[1.5.x] Fixed a minor spelling mistake in the queryset documentation

Backport of d258cce482 from master
This commit is contained in:
Wilfred Hughes 2013-05-14 11:40:33 +01:00 committed by Tim Graham
parent be6e7ff6eb
commit 20bed77567
1 changed files with 1 additions and 1 deletions
docs/ref/models

View File

@ -1451,7 +1451,7 @@ internally so that repeated evaluations do not result in additional queries. In
contrast, ``iterator()`` will read results directly, without doing any caching contrast, ``iterator()`` will read results directly, without doing any caching
at the ``QuerySet`` level (internally, the default iterator calls ``iterator()`` at the ``QuerySet`` level (internally, the default iterator calls ``iterator()``
and caches the return value). For a ``QuerySet`` which returns a large number of and caches the return value). For a ``QuerySet`` which returns a large number of
objects that you only need to access once, this can results in better objects that you only need to access once, this can result in better
performance and a significant reduction in memory. performance and a significant reduction in memory.
Note that using ``iterator()`` on a ``QuerySet`` which has already been Note that using ``iterator()`` on a ``QuerySet`` which has already been