summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-07-21 12:54:38 +0200
committerGitHub <noreply@github.com>2023-07-21 12:54:38 +0200
commit02376f1f53db24039c200ef4818d96accf16a88b (patch)
treee761e9f83d5f2d0088a26525e34596dc5c593a17 /docs/ref
parente4a5527d1dc2f8183883931560f3a6dcdef0ab0c (diff)
Added missing backticks in docs.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index 06bf09fba0..6f318b2df8 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -445,7 +445,7 @@ not be looking at your Django code. For example::
unique_together = ["driver", "restaurant"]
A :class:`~django.db.models.ManyToManyField` cannot be included in
- unique_together. (It's not clear what that would even mean!) If you
+ ``unique_together``. (It's not clear what that would even mean!) If you
need to validate uniqueness related to a
:class:`~django.db.models.ManyToManyField`, try using a signal or
an explicit :attr:`through <ManyToManyField.through>` model.