changeset 1272:717a08403b26

mod_websocket: Fix typo "Cosed" -> "Closed"
author Florian Zeitz <florob@babelmonkeys.de>
date Sat, 11 Jan 2014 00:20:59 +0100
parents e927d95512e8
children 1b543060f31e
files mod_websocket/mod_websocket.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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