summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-06-17 14:10:40 -0400
committerTim Graham <timograham@gmail.com>2014-06-17 14:10:40 -0400
commite4708385fde278fbbff5428f756632455c2bcaf5 (patch)
tree53522de74481cffd8dbc680811a6eeabf2cad079
parent77ff4a93606fe676c2fef4ec2d1812628d7ed01e (diff)
parenta8fa96796f07668c0fcdbc27a540bbb939d5bf2a (diff)
Merge pull request #2825 from collinanderson/patch-2
Made url syntax consistent in tutorial; refs #22218.
-rw-r--r--docs/intro/tutorial03.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 1d25a58711..5f58c235aa 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -267,7 +267,7 @@ 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\.html$', 'polls.views.index'),
+ url(r'^polls/latest\.html$', views.index),
But, don't do that. It's silly.