From ca67f39afa54e281705563834d3684e8b27844b6 Mon Sep 17 00:00:00 2001 From: Abhishek Bera Date: Sat, 30 Mar 2019 07:23:03 +0530 Subject: [PATCH] Fixed #30265 -- Fixed a tutorial number in Reusable App tutorial. --- docs/intro/reusable-apps.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt index 82fb2eb70b..21b918a641 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 `, we saw how we +on the way already. In :doc:`Tutorial 1 `, 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.