summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2023-06-22 11:55:38 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-23 09:29:35 +0200
commitf8092ee9adafaa052172712349a32bd5889b5ccb (patch)
tree29d9cf1b39c7e35a58328b1996824f01aa3fba4d /docs/ref/models
parent107865780aa44914e21d27fdf4ca269bc61c7f01 (diff)
Improved style of n-tuple wording in docs and comments.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt2
-rw-r--r--docs/ref/models/querysets.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index d96f489b81..e1575e61b2 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -227,7 +227,7 @@ modifications:
concrete data type. Django supports adding an extra string value to the end
of this tuple to be used as the human-readable name, or ``label``. The
``label`` can be a lazy translatable string. Thus, in most cases, the member
- value will be a ``(value, label)`` two-tuple. See below for :ref:`an example
+ value will be a ``(value, label)`` 2-tuple. See below for :ref:`an example
of subclassing choices <field-choices-enum-subclassing>` using a more complex
data type. If a tuple is not provided, or the last item is not a (lazy)
string, the ``label`` is :ref:`automatically generated
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 640818d2a5..cf3cb5c415 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -765,7 +765,7 @@ first item is the first field, etc. For example:
If you only pass in a single field, you can also pass in the ``flat``
parameter. If ``True``, this will mean the returned results are single values,
-rather than one-tuples. An example should make the difference clearer:
+rather than 1-tuples. An example should make the difference clearer:
.. code-block:: pycon