Modified a bit for the CheckIfValidControlData method

This commit is contained in:
sta 2015-01-30 11:51:18 +09:00
parent 91adf42611
commit bef64963be

View File

@ -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;
}