1
0
mirror of https://github.com/django/django.git synced 2025-05-05 14:37:31 +00:00

Fixed #20949 -- Typo #2 in docstring

This commit is contained in:
Tim Graham 2013-08-21 10:49:50 -04:00 committed by Andrew Godwin
parent 3e20a8856b
commit 2d903929a7

View File

@ -204,7 +204,7 @@ def do_extends(parser, token):
uses the literal value "base" as the name of the parent template to extend, 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 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 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() bits = token.split_contents()
if len(bits) != 2: if len(bits) != 2: