From dfd63ff43408e7901cc214b0482a7f844244d439 Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Fri, 12 Jul 2024 14:09:28 -0400
Subject: [PATCH] Refs #35506 -- Reverted "global URLconf" to "root URLconf" in
 tutorial 1.

---
 docs/intro/tutorial01.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index d00dd626ceb..db59ca49df7 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: