summaryrefslogtreecommitdiff
path: root/docs/topics/forms
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/topics/forms
parent08a6215d334f88f16707278e6003af59d13345b4 (diff)
Added missing backticks in various docs.
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index b6c6df0c16..7210868625 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -355,7 +355,7 @@ from that ``{{ form }}`` by Django's template language.
use the ``url``, ``email`` and ``number`` HTML5 input types. By default,
browsers may apply their own validation on these fields, which may be
stricter than Django's validation. If you would like to disable this
- behavior, set the `novalidate` attribute on the ``form`` tag, or specify
+ behavior, set the ``novalidate`` attribute on the ``form`` tag, or specify
a different widget on the field, like :class:`TextInput`.
We now have a working web form, described by a Django :class:`Form`, processed