summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2013-05-14 11:40:33 +0100
committerTim Graham <timograham@gmail.com>2013-05-14 10:32:38 -0400
commit528345069d8f9f3fb9350e12742fbfefb854fd29 (patch)
treea04446dc917cf74cab335a3b6287a81904128d8e /docs/ref
parent6297673efda48e72012da5ccea59d6b55cad3eff (diff)
[1.4.x] Fixed a minor spelling mistake in the queryset documentation
Backport of d258cce482 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index a32c9f50fd..022a251e5c 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1442,7 +1442,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