Chris McDonough
2012-02-06 d01ae960c9e278bd361e2517e0fef7173549f642
fix extra paren
1 files modified
2 ■■■ changed files
docs/narr/urldispatch.rst 2 ●●● patch | view | raw | blame | history
docs/narr/urldispatch.rst
@@ -341,7 +341,7 @@
.. code-block:: text
   foo/1/2/           -> {'baz':u'1', 'bar':u'2', 'fizzle':()}
   foo/abc/def/a/b/c  -> {'baz':u'abc', 'bar':u'def', 'fizzle': u'a/b/c')}
   foo/abc/def/a/b/c  -> {'baz':u'abc', 'bar':u'def', 'fizzle': u'a/b/c'}
This occurs because the default regular expression for a marker is ``[^/]+``
which will match everything up to the first ``/``, while ``{fizzle:.*}`` will