From: Ben Darnell Date: Wed, 4 Aug 2010 21:00:34 +0000 (-0700) Subject: Fix a typo in docstring X-Git-Tag: v1.1.0~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0875b784d10927629eccc4b371f10cd16753f401;p=thirdparty%2Ftornado.git Fix a typo in docstring --- diff --git a/tornado/web.py b/tornado/web.py index d8309e25d..fd2158e23 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -489,7 +489,7 @@ class RequestHandler(object): return t.generate(**args) def flush(self, include_footers=False): - """Flushes the current output buffer to the nextwork.""" + """Flushes the current output buffer to the network.""" if self.application._wsgi: raise Exception("WSGI applications do not support flush()")