summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-17 20:13:50 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-17 20:13:50 -0800
commit9efabf96235f9a683955ceafeafd47714ad1a65c (patch)
tree0b2332d2dc27f3cf31d566200af42b487f52114d
parent1a1e81832eb22296346b6800cbb969868d10852f (diff)
downloadroutes-9efabf96235f9a683955ceafeafd47714ad1a65c.tar.gz
Fixed a typo in the docs
-rw-r--r--docs/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst
index ca02f52..36f9893 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -33,7 +33,7 @@ Example
# Setup a mapper
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")
# Match a URL, returns a dict or None if no match