From edabc4aca1d5f8ff081bbc0c94ad8eb6bcad28e9 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 27 Sep 2008 03:25:42 +0000 Subject: [PATCH] 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 --- docs/ref/templates/api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index a220c79a96e..6a0cd11b533 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`.