summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2020-03-31 09:37:38 +0100
committerCarlton Gibson <carlton.gibson@noumenal.es>2020-04-01 15:15:21 +0200
commit0342d47e7a8571242a570b91dea3c137436740d4 (patch)
treeba498b92af4257836298bd28d5be9ec6458799ae /docs/ref/models
parentc9437596fe54fb5cf0330ee5a96e260903a2d683 (diff)
[3.0.x] Prevented (and corrected) single backtick usage in docs.
Backport of 1cdfe8d91215eefaa18c398069dd9c6879a9511d from master.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 0f0544e6fc..4429b7f946 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -153,7 +153,7 @@ The first element in each tuple is the name to apply to the group. The
second element is an iterable of 2-tuples, with each 2-tuple containing
a value and a human-readable name for an option. Grouped options may be
combined with ungrouped options within a single list (such as the
-`unknown` option in this example).
+``'unknown'`` option in this example).
For each model field that has :attr:`~Field.choices` set, Django will add a
method to retrieve the human-readable name for the field's current value. See