diff options
| author | Tim Graham <timograham@gmail.com> | 2013-08-21 10:49:50 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-21 10:50:27 -0400 |
| commit | 28b1317fd815325b5a58a7acae12ca45de5a6ac9 (patch) | |
| tree | 741d7e814cb561bf51529864c2ad4b008c986df9 | |
| parent | b0821e6d3a5dcb8b040ce2323f49b46dabbc9e37 (diff) | |
[1.6.x] Fixed #20949 -- Typo #2 in docstring
Backport of 0073f1d94f from master
| -rw-r--r-- | django/template/loader_tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/loader_tags.py b/django/template/loader_tags.py index a330c42a37..85ffcf17bb 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 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: |
