summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorHonza Král <honza.kral@gmail.com>2009-07-02 16:07:15 +0000
committerHonza Král <honza.kral@gmail.com>2009-07-02 16:07:15 +0000
commitd628498c58aab0c4deafe6b9d08e6220ee093fc5 (patch)
tree42e9fdba067953f734252f2ab4551b48afe168d3 /docs/ref/models
parent481fb86e139401bd454184066ee9e2dcb0015db0 (diff)
[soc2009/model-validation] Merged to trunk at r11155
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/model-validation@11158 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/models')
-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 eb8fbfd833..348486b341 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -35,7 +35,7 @@ You can evaluate a ``QuerySet`` in the following ways:
* **Slicing.** As explained in :ref:`limiting-querysets`, a ``QuerySet`` can
be sliced, using Python's array-slicing syntax. Usually slicing a
- ``QuerySet`` returns another (unevaluated ) ``QuerySet``, but Django will
+ ``QuerySet`` returns another (unevaluated) ``QuerySet``, but Django will
execute the database query if you use the "step" parameter of slice
syntax.