summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAbhishek Bera <bera.abhishek21@gmail.com>2019-03-30 07:23:03 +0530
committerTim Graham <timograham@gmail.com>2019-03-29 21:53:14 -0400
commit4a7bbace6bdfc3a4083df83bca3c456efbd66a53 (patch)
tree0c0d9affec40608c7dbecedc3fa2d3f2b92a014a /docs
parent5237da3416aa4db47b396e26238db9fdac121c24 (diff)
downloaddjango-4a7bbace6bdfc3a4083df83bca3c456efbd66a53.tar.gz
[2.2.x] Fixed #30265 -- Fixed a tutorial number in Reusable App tutorial.
Backport of ca67f39afa54e281705563834d3684e8b27844b6 from master.
Diffstat (limited to 'docs')
-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 debf3eb752..56e8bb1625 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -26,7 +26,7 @@ need to write the parts that make your project unique.
Let's say you were starting a new project that needed a polls app like the one
we've been working on. How do you make this app reusable? Luckily, you're well
-on the way already. In :doc:`Tutorial 3 </intro/tutorial03>`, we saw how we
+on the way already. In :doc:`Tutorial 1 </intro/tutorial01>`, we saw how we
could decouple polls from the project-level URLconf using an ``include``.
In this tutorial, we'll take further steps to make the app easy to use in new
projects and ready to publish for others to install and use.