summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-03-06 11:52:49 +0100
committerGitHub <noreply@github.com>2020-03-06 11:52:49 +0100
commit30ca66eadd1135d220ae1f0570bb0244c26b9d29 (patch)
tree587b479360c954419ae1047d654fdfc46bc75421 /docs/ref/models
parent08a6215d334f88f16707278e6003af59d13345b4 (diff)
Added missing backticks in various docs.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 38192d4fa6..6b042d305e 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -498,7 +498,7 @@ Examples (those after the first will only work on PostgreSQL)::
...wouldn't work because the query would be ordered by ``blog__name`` thus
mismatching the ``DISTINCT ON`` expression. You'd have to explicitly order
- by the relation `_id` field (``blog_id`` in this case) or the referenced
+ by the relation ``_id`` field (``blog_id`` in this case) or the referenced
one (``blog__pk``) to make sure both expressions match.
``values()``