summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClifford Gama <cliffygamy@gmail.com>2025-03-07 09:34:40 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-03-14 10:49:28 +0100
commit9b60ec56dd761fa4a2148cfccb98e77760a04766 (patch)
treeb3cf9d389f903fb347c69fa2791fccd7c824f3ad /docs
parentfa2adc383fea89d4b7540ba65ae72279e5d9725a (diff)
[5.2.x] Fixed pronoun disagreement in docs/ref/models/querysets.txt.
Backport of ef6a83789b310a441237a190a493c9586a4cb260 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 96e1ee072e..46889da7e4 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2337,9 +2337,9 @@ whenever a request to a page has a side effect on your data. For more, see
# Raises IntegrityError
This is happening because it's trying to get or create "Chapter 1" through the
- book "Ulysses", but it can't do any of them: the relation can't fetch that
- chapter because it isn't related to that book, but it can't create it either
- because ``title`` field should be unique.
+ book "Ulysses", but it can't do either: the relation can't fetch that chapter
+ because it isn't related to that book, but it can't create it either because
+ ``title`` field should be unique.
``update_or_create()``
~~~~~~~~~~~~~~~~~~~~~~