diff options
| author | Gabriel Hurley <gabehr@gmail.com> | 2011-04-18 23:15:28 +0000 |
|---|---|---|
| committer | Gabriel Hurley <gabehr@gmail.com> | 2011-04-18 23:15:28 +0000 |
| commit | 6f84e520e56e295c99ac44390c3cc8ffbac11d46 (patch) | |
| tree | f033e04e741def2a8fc3b810c43abfc23548eea1 /docs | |
| parent | b4c83138e9daa0be301d1f18458609f003d19922 (diff) | |
Fixed #15843 -- removed an extraneous quotation mark in the template tag docs. Thanks to Titan, Jer-ming Lin for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16042 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
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:: |
