summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2010-04-06 14:33:02 +0000
committerLuke Plant <L.Plant.98@cantab.net>2010-04-06 14:33:02 +0000
commitb2ecfe845f407b01a00fcf5cce0a6402631f5043 (patch)
tree23b5a5601eeab981cd975d8eb3573bf409d6b6e2
parent0819c291e7284c589e5fca9cce774e3375e3b0cb (diff)
[1.1.X] Fixed #13270 - typos in documentation
Thanks to cmbeelby for the report and patch Backport of r12934 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/internals/contributing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt
index cef9bbf81d..83973b44b3 100644
--- a/docs/internals/contributing.txt
+++ b/docs/internals/contributing.txt
@@ -450,7 +450,7 @@ follows::
settings.configure({}, SOME_SETTING='foo')
However, if any setting is accessed before the ``settings.configure`` line, this
-will not work. (Internally, ``setttings`` is a ``LazyObject`` which configures
+will not work. (Internally, ``settings`` is a ``LazyObject`` which configures
itself automatically when the settings are accessed if it has not already been
configured).