From 2edace47d6b3fd0f2032585a370a69ecc1f0c6fd Mon Sep 17 00:00:00 2001 From: Chris Seto Date: Wed, 17 Dec 2014 10:55:05 -0500 Subject: [PATCH] Fix typo in `stream_request_body` --- tornado/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/web.py b/tornado/web.py index 71610b95e..b85b55deb 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -1519,7 +1519,7 @@ def stream_request_body(cls): the entire body has been read. There is a subtle interaction between ``data_received`` and asynchronous - ``prepare``: The first call to ``data_recieved`` may occur at any point + ``prepare``: The first call to ``data_received`` may occur at any point after the call to ``prepare`` has returned *or yielded*. """ if not issubclass(cls, RequestHandler): -- 2.47.2