From b2ecfe845f407b01a00fcf5cce0a6402631f5043 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Tue, 6 Apr 2010 14:33:02 +0000 Subject: [PATCH] [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 --- docs/internals/contributing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).