# HG changeset patch # User Florian Zeitz # Date 1389396059 -3600 # Node ID 717a08403b2639a810991405461884b4bc03e89b # Parent e927d95512e8429044cef94045e2118a640b8e5e mod_websocket: Fix typo "Cosed" -> "Closed" diff -r e927d95512e8 -r 717a08403b26 mod_websocket/mod_websocket.lua --- a/mod_websocket/mod_websocket.lua Tue Jan 07 09:02:39 2014 +0100 +++ b/mod_websocket/mod_websocket.lua Sat Jan 11 00:20:59 2014 +0100 @@ -177,7 +177,7 @@ websocket_close(1002, "Closed with invalid status code"); return false; elseif ((status_code > 1003 and status_code < 1007) or status_code > 1011) and status_code < 3000 then - websocket_close(1002, "Cosed with reserved status code"); + websocket_close(1002, "Closed with reserved status code"); return false; end end