From 0875b784d10927629eccc4b371f10cd16753f401 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 4 Aug 2010 14:00:34 -0700 Subject: [PATCH] Fix a typo in docstring --- tornado/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()") -- 2.47.2