summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorAgnieszka Lasyk <agnieszkalasyk@agalasyk.local>2015-11-15 13:05:15 +0100
committerTim Graham <timograham@gmail.com>2015-11-16 06:44:14 -0500
commit1f8dad69158a96d0649d321ce08ecc9c0465f962 (patch)
tree17f36d2f6aa0b212eebb3a5f51e2ba27753f8a00 /docs/topics/http
parent53326e2c8ab92195be6b65120254be77cbf47c26 (diff)
Fixed #25755 -- Unified spelling of "website".
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/urls.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 7bd8fc21a3..88427d790e 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -274,7 +274,7 @@ Including other URLconfs
At any point, your ``urlpatterns`` can "include" other URLconf modules. This
essentially "roots" a set of URLs below other ones.
-For example, here's an excerpt of the URLconf for the `Django Web site`_
+For example, here's an excerpt of the URLconf for the `Django website`_
itself. It includes a number of other URLconfs::
from django.conf.urls import include, url
@@ -343,7 +343,7 @@ the suffixes that differ::
])),
]
-.. _`Django Web site`: https://www.djangoproject.com/
+.. _`Django website`: https://www.djangoproject.com/
Captured parameters
-------------------