summaryrefslogtreecommitdiff
path: root/docs/ref/templates
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2011-04-18 23:20:07 +0000
committerGabriel Hurley <gabehr@gmail.com>2011-04-18 23:20:07 +0000
commitb061cb97be8254f7b0f816cd10db0bf811f9509e (patch)
treee4d51c98addc9f652b9a9f1af552147347e757f3 /docs/ref/templates
parent1d499d50d08f8b36aed9e008dadfc26e4fe1b208 (diff)
[1.3.X] Fixed #15843 -- removed an extraneous quotation mark in the template tag docs. Thanks to Titan, Jer-ming Lin for the report.
Backport of [16042] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16043 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 1fa495e51a..eaa576ef15 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -666,7 +666,7 @@ including it. This example produces the output ``"Hello, John"``:
You can pass additional context to the template using keyword arguments::
- {% include "name_snippet.html" with person="Jane" greeting="Hello" "%}
+ {% include "name_snippet.html" with person="Jane" greeting="Hello" %}
If you want to only render the context with the variables provided (or even
no variables at all), use the ``only`` option::