summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-03-27 19:02:32 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-03-27 19:02:32 +0000
commit932928a1e2f48cacc94c0052626bcf6971ac3523 (patch)
tree27d94739a03358edfd3fe03f615eb8f7cf55ac56 /docs
parent45f9217cbd480725b0ce9d4028ee4fab7af21f11 (diff)
Edited docs/templates.txt changes from [4830]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index 005784a5eb..7d86f686d2 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -878,7 +878,7 @@ with
**New in Django development version**
Caches a complex variable under a simpler name. This is useful when accessing
-an "expensive" method (e.g. one that hits the database) multiple times.
+an "expensive" method (e.g., one that hits the database) multiple times.
For example::
@@ -887,7 +887,7 @@ For example::
{% endwith %}
The populated variable (in the example above, ``total``) is only available
-inside of the ``{% with %}`` block.
+between the ``{% with %}`` and ``{% endwith %}`` tags.
Built-in filter reference
-------------------------