summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2015-11-29 08:29:46 -0800
committerTim Graham <timograham@gmail.com>2015-12-01 08:01:34 -0500
commit7aabd6238028f4bb78d0687bbccc97bcf634e28b (patch)
tree8bf67912d9154f1420574c9f22bc75d9fe2f2de0 /docs/intro/tutorial01.txt
parent51a37213721e5689f17809990a9e7c38f1c8baf8 (diff)
Fixed #25778 -- Updated docs links to use https when available.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index bde7b800de..7255f2b3ee 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -331,8 +331,8 @@ finds one that matches.
Note that these regular expressions do not search GET and POST parameters, or
the domain name. For example, in a request to
-``http://www.example.com/myapp/``, the URLconf will look for ``myapp/``. In a
-request to ``http://www.example.com/myapp/?page=3``, the URLconf will also
+``https://www.example.com/myapp/``, the URLconf will look for ``myapp/``. In a
+request to ``https://www.example.com/myapp/?page=3``, the URLconf will also
look for ``myapp/``.
If you need help with regular expressions, see `Wikipedia's entry`_ and the