summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-21 10:11:59 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-21 10:11:59 -0700
commit16a01d6c53651ab2fd90939c9d6e31cadf7168e9 (patch)
tree27aacfe0ccdb8ef549d868a6d0ddfac6ea9a0954 /docs
parent93fb6a25c339f83ab243d155da7441a8effa5889 (diff)
downloadpyramid-16a01d6c53651ab2fd90939c9d6e31cadf7168e9.tar.gz
pyramid-16a01d6c53651ab2fd90939c9d6e31cadf7168e9.tar.bz2
pyramid-16a01d6c53651ab2fd90939c9d6e31cadf7168e9.zip
fix typo
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/urldispatch.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index a952e66d2..3de4c6d07 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -355,7 +355,7 @@ The above pattern will match these URLs, generating the following matchdicts:
foo/abc/def/a/b/c -> {'baz':'abc', 'bar':'def', 'fizzle': 'a/b/c')}
This occurs because the default regular expression for a marker is ``[^/]+``
-which will match everything up to the first ``/``, while ``{filzzle:.*}`` will
+which will match everything up to the first ``/``, while ``{fizzle:.*}`` will
result in a regular expression match of ``.*`` capturing the remainder into
a single value.