summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.txt
diff options
context:
space:
mode:
authorBen Longden <blongden@inviqa.com>2012-12-13 13:20:47 +0000
committerBen Longden <blongden@inviqa.com>2012-12-13 13:20:47 +0000
commit55a2d5b577bcf988d33ca4c8decfae6e96f58c7b (patch)
treee8c8c8d3151d5db910ed1d70505d782c10d033d8 /docs/intro/tutorial03.txt
parent7eba5fbc027face8dd33475148d442655a92cecd (diff)
Removes PHP references
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 5adfc9a490..3159ee88c2 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -235,11 +235,11 @@ be used to identify the matched pattern; and ``\d+`` is a regular expression to
match a sequence of digits (i.e., a number).
Because the URL patterns are regular expressions, there really is no limit on
-what you can do with them. And there's no need to add URL cruft such as ``.php``
--- unless you have a sick sense of humor, in which case you can do something
-like this::
+what you can do with them. And there's no need to add URL cruft such as
+``.html`` -- unless you want to, in which case you can do something like
+this::
- (r'^polls/latest\.php$', 'polls.views.index'),
+ (r'^polls/latest\.html$', 'polls.views.index'),
But, don't do that. It's silly.