From 15aa962cd768811c6bb5d136eb12ad9d345e6c59 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 27 Jun 2016 10:24:35 -0700 Subject: [PATCH] Update routing.rst --- docs/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/routing.rst b/docs/routing.rst index d692906..bce2edb 100644 --- a/docs/routing.rst +++ b/docs/routing.rst @@ -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[^/]+)/stream/$')