diff options
| author | Gabriel Hurley <gabehr@gmail.com> | 2010-10-28 01:55:58 +0000 |
|---|---|---|
| committer | Gabriel Hurley <gabehr@gmail.com> | 2010-10-28 01:55:58 +0000 |
| commit | 9962f352bf6d37bce323bc2dd280c1911c2140e5 (patch) | |
| tree | 81a3bb3dfde0ff7790fd1041ca9943d9f7ef53f6 | |
| parent | 1356947fad649f2ead8cc977162661016a773263 (diff) | |
Fixed #14578 -- Corrected a typo in the Models topic docs. Thanks to tobych for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14369 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/db/models.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index 2287053553..a5370b6c59 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -1076,7 +1076,7 @@ attribute when you use the proxy. This is easy:: ordering = ["username"] proxy = True -Now normal ``User`` queries will be unorderd and ``OrderedUser`` queries will +Now normal ``User`` queries will be unordered and ``OrderedUser`` queries will be ordered by ``username``. QuerySets still return the model that was requested |
