summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-07-24 16:02:35 -0400
committerTim Graham <timograham@gmail.com>2018-07-24 16:02:35 -0400
commitcef8f6a61bc8079fa36cb37a7d411b56869ffe32 (patch)
treefc29996075671c9cfb4eb62b7e68a79dc14229fc
parent2a74ceb5f371c1083bfc9b95e093543ba09eb20f (diff)
Fixed #29591 -- Fixed numbering words in docs/topics/db/examples/many_to_many.txt.
-rw-r--r--docs/topics/db/examples/many_to_many.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/examples/many_to_many.txt b/docs/topics/db/examples/many_to_many.txt
index 065ab1605b..53926d13fe 100644
--- a/docs/topics/db/examples/many_to_many.txt
+++ b/docs/topics/db/examples/many_to_many.txt
@@ -39,7 +39,7 @@ API facilities. Note that if you are using :ref:`an intermediate model
manager's methods are disabled, so some of these examples won't work with such
models.
-Create a couple of ``Publications``::
+Create a few ``Publications``::
>>> p1 = Publication(title='The Python Journal')
>>> p1.save()
@@ -68,7 +68,7 @@ Associate the ``Article`` with a ``Publication``::
>>> a1.publications.add(p1)
-Create another ``Article``, and set it to appear in both ``Publications``::
+Create another ``Article``, and set it to appear in the ``Publications``::
>>> a2 = Article(headline='NASA uses Python')
>>> a2.save()