diff options
| author | Day Barr <github.com@daybarr.com> | 2019-01-17 17:31:48 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-01-17 12:31:48 -0500 |
| commit | 51fa59f0b39b24d4a589e01a26e539c3134a6c42 (patch) | |
| tree | 4cf29940977da8f4007be8d3c50dd73f4e9752b0 /docs | |
| parent | 06670015f7e55a8be8137dbd95b7f4c536c3782b (diff) | |
Fixed typo in QuerySet.bulk_update documentation (#10859)
Looks like an accidental carry over from the pre-existing
QuerySet.bulk_create documentation.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 4c161200da..eae7bf877a 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2117,7 +2117,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()`` |
