From: Alexey Date: Fri, 2 Feb 2018 21:19:55 +0000 (+0300) Subject: Fix typo in URLSpec.__init__ docstring X-Git-Tag: v5.0.0~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2268%2Fhead;p=thirdparty%2Ftornado.git Fix typo in URLSpec.__init__ docstring --- diff --git a/tornado/routing.py b/tornado/routing.py index 4a19ba57a..e56d1a75f 100644 --- a/tornado/routing.py +++ b/tornado/routing.py @@ -605,7 +605,7 @@ class URLSpec(Rule): * ``pattern``: Regular expression to be matched. Any capturing groups in the regex will be passed in to the handler's get/post/etc methods as arguments (by keyword if named, by - position if unnamed. Named and unnamed capturing groups may + position if unnamed. Named and unnamed capturing groups may not be mixed in the same rule). * ``handler``: `~.web.RequestHandler` subclass to be invoked.