From b9db04178939bb737f1343089af021ede0da50d9 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 2 Jun 2020 12:26:30 +0200 Subject: [PATCH] [3.0.x] Adjusted URL example in tutorial. No need for the example to be ASP specific. Co-authored-by: Noah Kantrowitz Backport of 8c49c3f7257f14e071b619f90cd4d8cae6d04e74 from master --- docs/intro/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 47879fda65..f83c4f8d83 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -50,7 +50,7 @@ Django will choose a view by examining the URL that's requested (to be precise, the part of the URL after the domain name). Now in your time on the web you may have come across such beauties as -"ME2/Sites/dirmod.asp?sid=&type=gen&mod=Core+Pages&gid=A6CD4967199A42D9B65B1B". +``ME2/Sites/dirmod.htm?sid=&type=gen&mod=Core+Pages&gid=A6CD4967199A42D9B65B1B``. You will be pleased to know that Django allows us much more elegant *URL patterns* than that.