Commit 520ce1ba authored by Luke Plant's avatar Luke Plant
Browse files

Fixed #13270 - typos in documentation

Thanks to cmbeelby for the report and patch



git-svn-id: http://code.djangoproject.com/svn/django/trunk@12934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 21236fa0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -454,7 +454,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).

@@ -827,7 +827,7 @@ following is a minimal settings file that can be used to test SQLite::
    }

As a convenience, this settings file is included in your Django
distribution. It is called ``test_sqlite`, and is included in
distribution. It is called ``test_sqlite``, and is included in
the ``tests`` directory. This allows you to get started running
the tests against the sqlite database without doing anything on
your filesystem. However it should be noted that running against