summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial06.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-05-31 07:40:54 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-05-31 11:17:01 +0200
commitac90529cc58507d9a07610809a795ec5fc3cbf8c (patch)
tree6c38f93d38cd8e6f59177fe2e5536d951a602af8 /docs/intro/tutorial06.txt
parent1058fc7023d04d07c22a5e667b6a446705119b14 (diff)
Fixed docs build with sphinxcontrib-spelling 7.5.0+.
sphinxcontrib-spelling 7.5.0+ includes captions of figures in the set of nodes for which the text is checked.
Diffstat (limited to 'docs/intro/tutorial06.txt')
-rw-r--r--docs/intro/tutorial06.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/intro/tutorial06.txt b/docs/intro/tutorial06.txt
index b21ae4ed77..312b585f29 100644
--- a/docs/intro/tutorial06.txt
+++ b/docs/intro/tutorial06.txt
@@ -61,7 +61,7 @@ the path for templates.
Put the following code in that stylesheet (``polls/static/polls/style.css``):
.. code-block:: css
- :caption: polls/static/polls/style.css
+ :caption: ``polls/static/polls/style.css``
li a {
color: green;
@@ -70,7 +70,7 @@ Put the following code in that stylesheet (``polls/static/polls/style.css``):
Next, add the following at the top of ``polls/templates/polls/index.html``:
.. code-block:: html+django
- :caption: polls/templates/polls/index.html
+ :caption: ``polls/templates/polls/index.html``
{% load static %}
@@ -103,7 +103,7 @@ Then, add a reference to your image in your stylesheet
(``polls/static/polls/style.css``):
.. code-block:: css
- :caption: polls/static/polls/style.css
+ :caption: ``polls/static/polls/style.css``
body {
background: white url("images/background.png") no-repeat;