summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-08-21 09:01:52 -0400
committerAndrew Godwin <andrew@aeracode.org>2013-08-21 22:32:04 +0100
commitcb5c0bec14fd9be19daa84a7b21cf29f7a19ff3b (patch)
tree9e615a68219a798e12c2f3318e59c701e458acc1
parent3f416f637918cc162877be95a59d50825b203089 (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: