Fix error in comment

This commit is contained in:
Ben Darnell 2010-09-07 15:19:21 -07:00
parent 6d7e515ea4
commit e6d93d9350
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class WebSocketHandler(tornado.web.RequestHandler):
Web Sockets are not standard HTTP connections. The "handshake" is HTTP,
but after the handshake, the protocol is message-based. Consequently,
most of the Tornado HTTP facilities are not available in handlers of this
type. The only communication methods available to you are send_message()
type. The only communication methods available to you are write_message()
and close(). Likewise, your request handler class should
implement open() method rather than get() or post().