summaryrefslogtreecommitdiff
path: root/docs/templates_python.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-06 03:07:38 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-06 03:07:38 +0000
commit4ea3dd5dbdcb49aa9c78140ab6730aa235d9e6f0 (patch)
tree703db42d49049dda52e7b73ee4b6da0ef3cef83d /docs/templates_python.txt
parentcadb6a008d16720b0e7192ec698c3a43496f4984 (diff)
Fixed small typo in [628]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@629 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates_python.txt')
-rw-r--r--docs/templates_python.txt5
1 files 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``.