From 4ea3dd5dbdcb49aa9c78140ab6730aa235d9e6f0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 6 Sep 2005 03:07:38 +0000 Subject: [PATCH] Fixed small typo in [628] git-svn-id: http://code.djangoproject.com/svn/django/trunk@629 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates_python.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/templates_python.txt b/docs/templates_python.txt index 31973c183d..d04d1a9c6e 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -676,7 +676,7 @@ After ``parser.parse()`` is called, the parser hasn't yet "consumed" the ``CommentNode.render()`` simply returns an empty string. Anything between ``{% comment %}`` and ``{% endcomment %}`` is ignored. -Parsing unitl another block tag, and saving contents +Parsing until another block tag, and saving contents ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In the previous example, ``do_comment()`` discarded everything between @@ -709,4 +709,5 @@ The only new concept here is the ``self.nodelist.render(context)`` in ``UpperNode.render()``. For more examples of complex rendering, see the source code for ``{% if %}``, -``{% for %}``, ``{% ifequal %}`` and ``{% ifchanged %}``. +``{% for %}``, ``{% ifequal %}`` and ``{% ifchanged %}``. They live in +``django/core/defaulttags.py``.