diff options
author | Ethan McCreadie <ethanm@aweber.com> | 2013-12-13 11:56:06 -0500 |
---|---|---|
committer | Ethan McCreadie <ethanm@aweber.com> | 2013-12-13 11:56:06 -0500 |
commit | 23385e7624e6297b23070b14d4c298bc57b56622 (patch) | |
tree | 51b29c960ba6874f586429643c749b0b0a26cb78 /docs | |
parent | 0495657db81fbbe4090c0268a903506569656d06 (diff) | |
download | routes-23385e7624e6297b23070b14d4c298bc57b56622.tar.gz |
docs: Make example comment consistent with code
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst index 36f9893..26472b2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -38,7 +38,7 @@ Example # Match a URL, returns a dict or None if no match result = map.match('/error/myapp/4') - # result == {'controller': 'main', 'action': 'myapp', 'id': '4'} + # result == {'controller': 'error', 'action': 'myapp', 'id': '4'} Source ====== |