summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2010-03-06 11:10:25 +0000
committerJames Bennett <ubernostrum@gmail.com>2010-03-06 11:10:25 +0000
commit4960095e0cfe65ef09518c8c35a4157e95b872c1 (patch)
treec8e311182f7a46ce60a73915ce69a90f4f0e325c /docs/ref/settings.txt
parent68f4d1256a535e675aa202a2ee917c02371ae70a (diff)
Fixed #13036: Corrected a typo in the documentation for the TEMPLATE_LOADERS setting.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/settings.txt')
-rw-r--r--docs/ref/settings.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index c971ee585a..d403a83224 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1457,7 +1457,7 @@ Default::
'django.template.loaders.app_directories.Loader')
A tuple of template loader classes, specified as strings. Each ``Loader`` class
-knows how to import templates from a particular sources. Optionally, a tuple can be
+knows how to import templates from a particular source. Optionally, a tuple can be
used instead of a string. The first item in the tuple should be the ``Loader``'s
module, subsequent items are passed to the ``Loader`` during initialization. See
:ref:`ref-templates-api`.