From c16de0e1e397c9cd85e4aaebaa21d92032f9750c Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 26 Oct 2016 09:15:53 -0700 Subject: [PATCH] Remove last reference to more_body --- docs/asgi.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/asgi.rst b/docs/asgi.rst index 0165a28..76b1f7b 100644 --- a/docs/asgi.rst +++ b/docs/asgi.rst @@ -561,10 +561,10 @@ Keys: Header names must be lowercased. * ``body``: Body of the request, as a byte string. Optional, defaults to ``""``. - If ``more_body`` is set, treat as start of body and concatenate + If ``body_channel`` is set, treat as start of body and concatenate on further chunks. -* ``more_body``: Name of a single-reader channel (containing ``?``) that contains +* ``body_channel``: Name of a single-reader channel (containing ``?``) that contains Request Body Chunk messages representing a large request body. Optional, defaults to ``None``. Chunks append to ``body`` if set. Presence of a channel indicates at least one Request Body Chunk message needs to be read,