Commit cb5c0bec authored by Tim Graham's avatar Tim Graham Committed by Andrew Godwin
Browse files

Fixed docstring typo, thanks minddust.

parent 3f416f63
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: