summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-09-27 03:25:42 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-09-27 03:25:42 +0000
commitedabc4aca1d5f8ff081bbc0c94ad8eb6bcad28e9 (patch)
treeeec499503016a674e9343520e8d1e909deb39aed /docs/ref
parent48d41cf78eb480f8190801e18d529057f14a4760 (diff)
Fied #9169 -- Fixed a typo in a docs example. Thanks, jeremyb.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9085 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/templates/api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index a220c79a96..6a0cd11b53 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -291,7 +291,7 @@ normal ``django.template.Context``. The first difference is that it takes an
c = RequestContext(request, {
'foo': 'bar',
- }
+ })
The second difference is that it automatically populates the context with a few
variables, according to your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting`.