summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial06.txt
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2020-05-01 13:37:21 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-04 12:10:47 +0200
commitd17b380653da5f95885ce53468fe7aac60672841 (patch)
tree9fbe962d480093a45cf238d22596812637765c74 /docs/intro/tutorial06.txt
parent787981f9d1d5abc489a0b069e3353b8ad7aa9778 (diff)
Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and comments.
Diffstat (limited to 'docs/intro/tutorial06.txt')
-rw-r--r--docs/intro/tutorial06.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/intro/tutorial06.txt b/docs/intro/tutorial06.txt
index e81f6cdf0c..be69f5e162 100644
--- a/docs/intro/tutorial06.txt
+++ b/docs/intro/tutorial06.txt
@@ -112,10 +112,10 @@ loaded in the top left of the screen.
.. warning::
- Of course the ``{% static %}`` template tag is not available for use in
- static files like your stylesheet which aren't generated by Django. You
- should always use **relative paths** to link your static files between each
- other, because then you can change :setting:`STATIC_URL` (used by the
+ The ``{% static %}`` template tag is not available for use in static files
+ which aren't generated by Django, like your stylesheet. You should always
+ use **relative paths** to link your static files between each other,
+ because then you can change :setting:`STATIC_URL` (used by the
:ttag:`static` template tag to generate its URLs) without having to modify
a bunch of paths in your static files as well.