From: Shawn Ding Date: Fri, 17 Feb 2017 06:07:41 +0000 (-0500) Subject: Fix a typo X-Git-Tag: v4.5.0~37^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1954%2Fhead;p=thirdparty%2Ftornado.git Fix a typo --- diff --git a/tornado/websocket.py b/tornado/websocket.py index 6e1220b3e..543cc29bc 100644 --- a/tornado/websocket.py +++ b/tornado/websocket.py @@ -319,7 +319,7 @@ class WebSocketHandler(tornado.web.RequestHandler): This is an important security measure; don't disable it without understanding the security implications. In - particular, if your authenticatino is cookie-based, you + particular, if your authentication is cookie-based, you must either restrict the origins allowed by ``check_origin()`` or implement your own XSRF-like protection for websocket connections. See `these