summaryrefslogtreecommitdiff
path: root/docs/ref/forms
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 14:55:11 +0200
commit1cdfe8d91215eefaa18c398069dd9c6879a9511d (patch)
treeebfb55efbac6e82cfc70587f13b1e0db6b1600e7 /docs/ref/forms
parent4a6f2b63d7ad5907b3d64f8e4d318e7d59b4dd5f (diff)
Prevented (and corrected) single backtick usage in docs.
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/widgets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 5a54051cda..76c8dd7a35 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -365,7 +365,7 @@ foundation for custom widgets.
the ``name`` attribute on each subwidget. In this case, for each
``(key, widget)`` pair, the key will be appended to the ``name`` of the
widget in order to generate the attribute value. You may provide the
- empty string (`''`) for a single key, in order to suppress the suffix
+ empty string (``''``) for a single key, in order to suppress the suffix
for one widget. For example::
>>> widget = MultiWidget(widgets={'': TextInput, 'last': TextInput})