summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2020-11-13 21:26:30 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-11-13 22:29:41 +0100
commit1f6e7fb4ab12f6ee8eb130bbc7de4268113650f6 (patch)
tree2a44d093d0ccf72aece8967c04c7192eb226219b /docs/topics
parenteba8d6f5d73ed315e4b89b6cb92db57c3906bd5d (diff)
[3.1.x] Changed docs and a code comment to use gender-neutral pronouns.
Follow up to e1b77238171cc96f4451a06fb4682e2378896238. Backport of 477c800443d091b5f36be9b5f83ce16c85da5879 from master.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/db/examples/many_to_one.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/examples/many_to_one.txt b/docs/topics/db/examples/many_to_one.txt
index 6c07b5a45d..b9142243f9 100644
--- a/docs/topics/db/examples/many_to_one.txt
+++ b/docs/topics/db/examples/many_to_one.txt
@@ -185,7 +185,7 @@ Queries can go round in circles::
>>> Reporter.objects.filter(article__reporter=r).distinct()
<QuerySet [<Reporter: John Smith>]>
-If you delete a reporter, his articles will be deleted (assuming that the
+If you delete a reporter, their articles will be deleted (assuming that the
ForeignKey was defined with :attr:`django.db.models.ForeignKey.on_delete` set to
``CASCADE``, which is the default)::