From 74b3a0c602747f7f89f8823ae9e59560f1d2f9ae Mon Sep 17 00:00:00 2001 From: Alexey Date: Sat, 3 Feb 2018 00:19:55 +0300 Subject: [PATCH] Fix typo in URLSpec.__init__ docstring --- tornado/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/routing.py b/tornado/routing.py index 4a19ba57..e56d1a75 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.