summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2013-11-17 20:23:45 -0800
committerBen Bangert <ben@groovie.org>2013-11-17 20:23:45 -0800
commit802e76ccb4b8b0b848b8a35d921b389a696009f1 (patch)
treefdf4700a110b307f51124665969f5a93570ce963
parentedd16d2fff86a577a494b8e85949b3d1d8178ff5 (diff)
parent498d39927d1592423d6aeb895be1434eb09f367e (diff)
downloadroutes-802e76ccb4b8b0b848b8a35d921b389a696009f1.tar.gz
Merge pull request #21 from alex/patch-2
Fixed a typo in the docs
-rw-r--r--docs/setting_up.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/setting_up.rst b/docs/setting_up.rst
index e93cb97..8d0f984 100644
--- a/docs/setting_up.rst
+++ b/docs/setting_up.rst
@@ -10,7 +10,7 @@ you. In Pylons, you define your routes in the ``make_map`` function in your
from routes import Mapper
map = Mapper()
- map.connect(None, "/error/{action}/{id}, controller="error")
+ map.connect(None, "/error/{action}/{id}", controller="error")
map.connect("home", "/", controller="main", action="index")
# ADD CUSTOM ROUTES HERE
map.connect(None, "/{controller}/{action}")