summaryrefslogtreecommitdiff
path: root/docs/intro
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/intro
parent08a6215d334f88f16707278e6003af59d13345b4 (diff)
Added missing backticks in various docs.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/reusable-apps.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index c5e94debc6..3bc0188332 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -169,7 +169,7 @@ this. For a small app like polls, this process isn't too difficult.
path('polls/', include('polls.urls')),
- 3. Run `python manage.py migrate` to create the polls models.
+ 3. Run ``python manage.py migrate`` to create the polls models.
4. Start the development server and visit http://127.0.0.1:8000/admin/
to create a poll (you'll need the Admin app enabled).