Update routing.rst

This commit is contained in:
Andrew Godwin 2016-06-27 10:24:35 -07:00 committed by GitHub
parent 07d1551306
commit 15aa962cd7

View File

@ -54,7 +54,7 @@ You can have multiple filters::
Multiple filters are always combined with logical AND; that is, you need to
match every filter to have the consumer called.
Filters can capture keyword arguments to be passed to your function or your class based consumers member function as a ``kwarg``::
Filters can capture keyword arguments to be passed to your function or your class based consumer methods as a ``kwarg``::
route("websocket.connect", connect_blog, path=r'^/liveblog/(?P<slug>[^/]+)/stream/$')