summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2024-07-12 14:09:28 -0400
committerGitHub <noreply@github.com>2024-07-12 15:09:28 -0300
commitdfd63ff43408e7901cc214b0482a7f844244d439 (patch)
treefedbc359d2492d237859e612a75651ed0799f47d /docs/intro/tutorial01.txt
parent86e13843c2ab510fba1de84588efe7fd03555531 (diff)
Refs #35506 -- Reverted "global URLconf" to "root URLconf" in tutorial 1.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index d00dd626ce..db59ca49df 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -256,7 +256,7 @@ Your app directory should now look like:
urls.py
views.py
-The next step is to configure the global URLconf in the ``mysite`` project to
+The next step is to configure the root URLconf in the ``mysite`` project to
include the URLconf defined in ``polls.urls``. To do this, add an import for
``django.urls.include`` in ``mysite/urls.py`` and insert an
:func:`~django.urls.include` in the ``urlpatterns`` list, so you have: