summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-05-14 07:31:29 -0700
committerTim Graham <timograham@gmail.com>2013-05-14 07:31:29 -0700
commit9db4c2c1337aa3c000abaeb0d8024351dbc643d7 (patch)
treee978bed8a22a247a0724715c25cb8d0c53814090
parent1708c8afb6f07417da192bae93a828065858fb3c (diff)
parentd258cce48238678a606b82287c245576249147cb (diff)
Merge pull request #1064 from Wilfred/master
Minor spelling fix
-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 96e189fa74..ffada19082 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1486,7 +1486,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