diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-10 13:27:53 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-10 13:27:53 +0000 |
| commit | b7b0ebb3adf89b7abf8a66551077b6d110700ed6 (patch) | |
| tree | 2ee16984833f5f5d951955cdebe42116e2e7bebc /docs/ref | |
| parent | 5627b26377dff1bf53690279e6792748f33f9043 (diff) | |
[1.1.X] Fixed #12678 -- Corrected a few references to Queryset into QuerySet. Thanks to ChrisMorgan for the report, and timo for the patch.
Backport of r13211 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13216 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index bf461583b2..3e539f39c6 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -88,7 +88,7 @@ time, defeating the purpose of caching). This means that when you unpickle a than the results that are currently in the database. If you only want to pickle the necessary information to recreate the -``Queryset`` from the database at a later time, pickle the ``query`` attribute +``QuerySet`` from the database at a later time, pickle the ``query`` attribute of the ``QuerySet``. You can then recreate the original ``QuerySet`` (without any results loaded) using some code like this:: |
