diff options
author | Luke Plant <L.Plant.98@cantab.net> | 2010-04-06 14:18:32 +0000 |
---|---|---|
committer | Luke Plant <L.Plant.98@cantab.net> | 2010-04-06 14:18:32 +0000 |
commit | 520ce1bab3db1cce8560f5c78873fc2117785742 (patch) | |
tree | e492e9366ca79903ae706296cbaedf6105ebd0c8 /docs/internals | |
parent | 21236fa0a2dc37126cc93eb1a8f849002000cbe6 (diff) | |
download | django-520ce1bab3db1cce8560f5c78873fc2117785742.tar.gz |
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
Diffstat (limited to 'docs/internals')
-rw-r--r-- | docs/internals/contributing.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt index c9abf203eb..12f955e716 100644 --- a/docs/internals/contributing.txt +++ b/docs/internals/contributing.txt @@ -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 |