Changes between Version 2 and Version 3 of Ticket #36741, comment 2


Ignore:
Timestamp:
Nov 18, 2025, 10:40:52 AM (4 weeks ago)
Author:
Youngkwang Yang

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36741, comment 2

    v2 v3  
    1 The bulk_update() documentation appears to have a typo. It currently says:
    2 "**QuerySet.update()** is used to save the changes"
     1(Note: The screenshot you attached is from the bulk_update() section, not the update() section. "QuerySet.update()" is linked, and clicking it takes you to the update() section.)
    32
    4 But since this is the bulk_update() section, it should be:
    5 "**QuerySet.bulk_update()** is used to save the changes"
     3there is potential for confusion here since the bulk_update() documentation doesn't explain that update() is called internally. This might explain why the bulk_update() section could be mistaken for the update() section.
    64
    7 (Note: The screenshot you attached is from the **bulk_update()** section, not the update() section.)
    8 bulk_update: https://docs.djangoproject.com/en/5.2/ref/models/querysets/#bulk-update
Back to Top