From 364d1e45b4c64ef86b25505eafdbc0393f4f26e2 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 25 Apr 2017 13:43:34 -0700 Subject: [PATCH] Remove last websocket.send enforcing references --- docs/asgi/www.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/asgi/www.rst b/docs/asgi/www.rst index d81fcde..cc5c2d5 100644 --- a/docs/asgi/www.rst +++ b/docs/asgi/www.rst @@ -262,7 +262,7 @@ Channel: ``websocket.connect`` Keys: -* ``reply_channel``: Channel name for sending data, start with ``websocket.send!`` +* ``reply_channel``: Channel name for sending data * ``scheme``: Unicode string URL scheme portion (likely ``ws`` or ``wss``). Optional (but must not be empty), default is ``ws``. @@ -304,7 +304,7 @@ Channel: ``websocket.receive`` Keys: -* ``reply_channel``: Channel name for sending data, starting with ``websocket.send!`` +* ``reply_channel``: Channel name for sending data * ``path``: Path sent during ``connect``, sent to make routing easier for apps. @@ -332,8 +332,8 @@ Channel: ``websocket.disconnect`` Keys: -* ``reply_channel``: Channel name that was used for sending data, starting - with ``websocket.send!``. Cannot be used to send at this point; provided +* ``reply_channel``: Channel name that was used for sending data. + Cannot be used to send at this point; provided as a way to identify the connection only. * ``code``: The WebSocket close code (integer), as per the WebSocket spec.