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:01:52 -0400
commitd3ed15b79d8b9288c4f6af07d5161f0727dd7669 (patch)
tree3b3497fe466024d721d000595b8347b1f8423452
parentf7290581fe2106c08d97215ab93e27cf6b27e100 (diff)
Fixed docstring typo, thanks minddust.
-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 406775da9d..63ddbd4a6a 100644
--- a/django/template/loader_tags.py
+++ b/django/template/loader_tags.py
@@ -204,7 +204,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: