From bef64963be0c342cea849b182b20aa7121417ae4 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 30 Jan 2015 11:51:18 +0900 Subject: [PATCH] Modified a bit for the CheckIfValidControlData method --- websocket-sharp/Ext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index d2f6b405..85074216 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -281,7 +281,7 @@ namespace WebSocketSharp internal static string CheckIfValidControlData (this byte[] data, string paramName) { return data.Length > 125 - ? String.Format ("'{0}' is greater than the allowable max size.", paramName) + ? String.Format ("'{0}' has greater than the allowable max size.", paramName) : null; }