From: Ben Darnell Date: Sat, 12 Jan 2013 17:19:30 +0000 (-0500) Subject: Fix typo in docs X-Git-Tag: v3.0.0~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35cdbf05692d3a19f498f748a449fcbe63d700fd;p=thirdparty%2Ftornado.git Fix typo in docs --- diff --git a/tornado/ioloop.py b/tornado/ioloop.py index fad33b0ae..5e42147e4 100644 --- a/tornado/ioloop.py +++ b/tornado/ioloop.py @@ -66,7 +66,7 @@ class IOLoop(Configurable): 2.6+) if they are available, or else we fall back on select(). If you are implementing a system that needs to handle thousands of simultaneous connections, you should use a system that supports either - epoll or queue. + epoll or kqueue. Example usage for a simple TCP server::