summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-27 22:04:31 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-27 22:04:31 -0700
commitcc0f6a2cf76e5cee3678446b0e226367dc96d158 (patch)
tree2e9ce26cd0ab997d5ed18a0976dd2cda30057d57 /docs/narr/urldispatch.rst
parentef921f9724c9810f0147a10a5d5b9112bc2e9ce1 (diff)
parentb5f8a5ee066c39fb6be2f677551fd4211670b2de (diff)
downloadpyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.tar.gz
pyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.tar.bz2
pyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.zip
Merge https://github.com/Pylons/pyramid
Diffstat (limited to 'docs/narr/urldispatch.rst')
-rw-r--r--docs/narr/urldispatch.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index dfb060d32..1b911a4a8 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -349,7 +349,8 @@ also capture the remainder of the URL, for example:
foo/{baz}/{bar}{fizzle:.*}
-The above pattern will match these URLs, generating the following matchdicts:
+The above pattern will match these URLs, generating the following
+matchdicts::
foo/1/2/ -> {'baz':'1', 'bar':'2', 'fizzle':()}
foo/abc/def/a/b/c -> {'baz':'abc', 'bar':'def', 'fizzle': 'a/b/c')}