diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2013-05-14 11:40:33 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-05-14 10:32:07 -0400 |
| commit | 20bed77567dc04f7efa0b35a0f4e08d61c692535 (patch) | |
| tree | d156e3a23b2c2c330f12e53fc67a4660dac0d1b7 /docs | |
| parent | be6e7ff6ebda7acca71e32c2e7890c62e98ba81a (diff) | |
[1.5.x] Fixed a minor spelling mistake in the queryset documentation
Backport of d258cce482 from master
Diffstat (limited to 'docs')
| -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 a11362df34..7ef6a4feee 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -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 at the ``QuerySet`` level (internally, the default iterator calls ``iterator()`` 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. Note that using ``iterator()`` on a ``QuerySet`` which has already been |
