summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMaximiliano <maxi.padulo@gmail.com>2015-06-01 10:16:36 +0200
committerTim Graham <timograham@gmail.com>2015-06-01 09:42:53 -0400
commitaefa3a6a03e1a14e994c5fb3aaae38f7c1ec41fa (patch)
treebe800afccb7187a666cbc7aee9e222bcabd359d4 /docs
parent52b5890f5237ad8859108de1e0757be2b3f354c4 (diff)
[1.8.x] Simplified wording in QuerySet.update() docs.
Backport of bf07ba523a9846fa9820b87321ef4222fed98e8c from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 48aad80fa4..2d010ce691 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -1014,8 +1014,8 @@ new value to be the new model instance you want to point to. For example::
The ``update()`` method is applied instantly and returns the number of rows
matched by the query (which may not be equal to the number of rows updated if
some rows already have the new value). The only restriction on the
-:class:`~django.db.models.query.QuerySet` that is updated is that it can only
-access one database table, the model's main table. You can filter based on
+:class:`~django.db.models.query.QuerySet` being updated is that it can only
+access one database table: the model's main table. You can filter based on
related fields, but you can only update columns in the model's main
table. Example::