summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2010-10-28 01:55:58 +0000
committerGabriel Hurley <gabehr@gmail.com>2010-10-28 01:55:58 +0000
commit9962f352bf6d37bce323bc2dd280c1911c2140e5 (patch)
tree81a3bb3dfde0ff7790fd1041ca9943d9f7ef53f6 /docs
parent1356947fad649f2ead8cc977162661016a773263 (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
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/models.txt2
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