]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix typo in `stream_request_body` 1279/head
authorChris Seto <chriskseto@gmail.com>
Wed, 17 Dec 2014 15:55:05 +0000 (10:55 -0500)
committerChris Seto <chriskseto@gmail.com>
Wed, 17 Dec 2014 15:55:05 +0000 (10:55 -0500)
tornado/web.py

index 71610b95e8843c5613fadda379a05b152961083e..b85b55debbde19d06375306903ea476b8c5ee56d 100644 (file)
@@ -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):