summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-11-16 07:28:20 -0500
committerTim Graham <timograham@gmail.com>2016-11-16 07:28:51 -0500
commitfe8b55699a780b78a0242308b4ed7b939043b568 (patch)
treee8208b3f35f4ff1295eb54425fb5ca02a7f864b1 /docs
parent04d4350649524b570e7d27e7c6f4469507bbb0a3 (diff)
[1.10.x] Fixed #27494 -- Fixed typos in docs/topics/db/models.txt.
Backport of 3ce212a23c55c0e2fb99a632afdf04d03cf41e74 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/models.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 1d95a94f15..5636021db7 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -1022,8 +1022,8 @@ The reverse name of the ``common.ChildB.m2m`` field will be
``common_childb_related`` and the reverse query name will be
``common_childbs``. Finally, the reverse name of the ``rare.ChildB.m2m`` field
will be ``rare_childb_related`` and the reverse query name will be
-``rare_childbs``. It's up to you how you use the `'%(class)s'`` and
-``'%(app_label)s`` portion to construct your related name or related query name
+``rare_childbs``. It's up to you how you use the ``'%(class)s'`` and
+``'%(app_label)s'`` portion to construct your related name or related query name
but if you forget to use it, Django will raise errors when you perform system
checks (or run :djadmin:`migrate`).