Index: docs/ref/templates/api.txt
===================================================================
--- docs/ref/templates/api.txt	(revision 9081)
+++ docs/ref/templates/api.txt	(working copy)
@@ -286,17 +286,17 @@
 
 Django comes with a special ``Context`` class,
 ``django.template.RequestContext``, that acts slightly differently than the
 normal ``django.template.Context``. The first difference is that it takes an
 :class:`~django.http.HttpRequest` as its first argument. For example::
 
     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`.
 
 The :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting is a tuple of callables --
 called **context processors** -- that take a request object as their argument
 and return a dictionary of items to be merged into the context. By default,
 :setting:`TEMPLATE_CONTEXT_PROCESSORS` is set to::
