From: Chris Seto Date: Wed, 17 Dec 2014 15:55:05 +0000 (-0500) Subject: Fix typo in `stream_request_body` X-Git-Tag: v4.1.0b1~48^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1279%2Fhead;p=thirdparty%2Ftornado.git Fix typo in `stream_request_body` --- 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):