summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2010-10-28 01:56:41 +0000
committerGabriel Hurley <gabehr@gmail.com>2010-10-28 01:56:41 +0000
commit12652baca69cb263382cb4992155db224f44400e (patch)
tree0c9146c92f40d4eec447d269560a0a43fe320028 /docs
parente8c413a3e24f9828253eaadde3bdd66149912234 (diff)
[1.2.X] Fixed #14578 -- Corrected a typo in the Models topic docs. Thanks to tobych for the report and patch.
Backport of [14369] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14370 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