From 9962f352bf6d37bce323bc2dd280c1911c2140e5 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Thu, 28 Oct 2010 01:55:58 +0000 Subject: [PATCH] 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 --- docs/topics/db/models.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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