]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix typo in URLSpec.__init__ docstring 2268/head
authorAlexey <forestbiiird@gmail.com>
Fri, 2 Feb 2018 21:19:55 +0000 (00:19 +0300)
committerGitHub <noreply@github.com>
Fri, 2 Feb 2018 21:19:55 +0000 (00:19 +0300)
tornado/routing.py

index 4a19ba57aae75ab09538aa71ec32496086e6d335..e56d1a75f973faef951f39b39d09c65c39d8d745 100644 (file)
@@ -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.