summaryrefslogtreecommitdiff
path: root/docs/ref/templates
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-02 20:53:47 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-02 20:53:47 +0000
commit55943c09757c32c4c5ad7bc8a275df0cbbce172e (patch)
treeb27c687b8d8a85be4e461d782d8c2829c69a8407 /docs/ref/templates
parentf1eb098d96bd43de03e94163449d49d598f953e1 (diff)
[1.0.X] Fixed #9497 - Doc typos. Many thanks ramiro.
[9330] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9331 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates')
-rw-r--r--docs/ref/templates/api.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index 6a0cd11b53..c793e5ce69 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -294,7 +294,7 @@ normal ``django.template.Context``. The first difference is that it takes an
})
The second difference is that it automatically populates the context with a few
-variables, according to your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting`.
+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
@@ -384,7 +384,7 @@ If :setting:`TEMPLATE_CONTEXT_PROCESSORS` contains this processor, every
* ``LANGUAGES`` -- The value of the :setting:`LANGUAGES` setting.
* ``LANGUAGE_CODE`` -- ``request.LANGUAGE_CODE``, if it exists. Otherwise,
- the value of the :setting:`LANGUAGE_CODE` setting`.
+ the value of the :setting:`LANGUAGE_CODE` setting.
See :ref:`topics-i18n` for more.