summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDay Barr <github.com@daybarr.com>2019-01-17 17:31:48 +0000
committerTim Graham <timograham@gmail.com>2019-01-17 12:32:22 -0500
commit7185ea6902532eb195d0575d1bf1492ca9d45dea (patch)
tree17d272fcaa703380900caafd75173511aa04283a
parent4882921fb7f6172263d8c6512986dd18b93e7463 (diff)
[2.2.x] Fixed typo in QuerySet.bulk_update() documentation.
Backport of 51fa59f0b39b24d4a589e01a26e539c3134a6c42 from master.
-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 3ddd516eaf..ac7bf83e7f 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2129,7 +2129,7 @@ them, but it has a few caveats:
* If ``objs`` contains duplicates, only the first one is updated.
The ``batch_size`` parameter controls how many objects are saved in a single
-query. The default is to create all objects in one batch, except for SQLite
+query. The default is to update all objects in one batch, except for SQLite
and Oracle which have restrictions on the number of variables used in a query.
``count()``