[Modify] Polish it

This commit is contained in:
sta 2016-11-24 17:31:13 +09:00
parent 0cdbc70bf5
commit bd9724b257

View File

@ -2762,7 +2762,7 @@ namespace WebSocketSharp
byte[] bytes;
if (!data.TryGetUTF8EncodedBytes (out bytes))
throw new ArgumentException ("Cannot be UTF8 encoded.", "data");
throw new ArgumentException ("Could not be UTF8 encoded.", "data");
send (Opcode.Text, new MemoryStream (bytes));
}