summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2013-11-17 20:23:20 -0800
committerBen Bangert <ben@groovie.org>2013-11-17 20:23:20 -0800
commitedd16d2fff86a577a494b8e85949b3d1d8178ff5 (patch)
tree0b2332d2dc27f3cf31d566200af42b487f52114d
parent1a1e81832eb22296346b6800cbb969868d10852f (diff)
parent9efabf96235f9a683955ceafeafd47714ad1a65c (diff)
downloadroutes-edd16d2fff86a577a494b8e85949b3d1d8178ff5.tar.gz
Merge pull request #20 from alex/patch-1
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