summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-08-21 09:01:52 -0400
committerTim Graham <timograham@gmail.com>2013-08-21 09:02:19 -0400
commitb0821e6d3a5dcb8b040ce2323f49b46dabbc9e37 (patch)
treedf75ba658db88c4cfe306e6fdb45f42e228c1b34
parente7d4d41a30b4cf60690fe55e47b4e10403fc8b46 (diff)
[1.6.x] Fixed docstring typo, thanks minddust.
Backport of d3ed15b79d from master
-rw-r--r--django/template/loader_tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/loader_tags.py b/django/template/loader_tags.py
index 767f0e5ff8..a330c42a37 100644
--- a/django/template/loader_tags.py
+++ b/django/template/loader_tags.py
@@ -206,7 +206,7 @@ def do_extends(parser, token):
uses the literal value "base" as the name of the parent template to extend,
or ``{% extends variable %}`` uses the value of ``variable`` as either the
name of the parent template to extend (if it evaluates to a string) or as
- the parent tempate itelf (if it evaluates to a Template object).
+ the parent tempate itself (if it evaluates to a Template object).
"""
bits = token.split_contents()
if len(bits) != 2: