summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-08-21 10:49:50 -0400
committerAndrew Godwin <andrew@aeracode.org>2013-08-21 22:32:05 +0100
commit2d903929a70078cf1c50bf7b6e7718b1a4a691df (patch)
tree803ed316b2787ddcdb683a894bd5985d34fca12e
parent3e20a8856bf72e2f921b3a39440bed8336cb9713 (diff)
Fixed #20949 -- Typo #2 in docstring
-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 63ddbd4a6a..d48f85eb35 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 itself (if it evaluates to a Template object).
+ the parent template itself (if it evaluates to a Template object).
"""
bits = token.split_contents()
if len(bits) != 2: