summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-17 20:15:05 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-17 20:15:05 -0800
commit498d39927d1592423d6aeb895be1434eb09f367e (patch)
tree21f0c20421ab89850b4ecc3d8c4d0440c7313797
parent1a1e81832eb22296346b6800cbb969868d10852f (diff)
downloadroutes-498d39927d1592423d6aeb895be1434eb09f367e.tar.gz
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}")