From 7d52b5492dc0a51ac1398fa2f6c619b797a580d8 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 10 Dec 2015 15:51:04 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/WebSocket.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index d227d6e3..6f083b7f 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -741,9 +741,9 @@ namespace WebSocketSharp : !_client && !masked ? "A frame from a client isn't masked." : _inContinuation && frame.IsData - ? "A data frame has been received while receiving the fragmented data." + ? "A data frame has been received while receiving continuation frames." : frame.IsCompressed && _compression == CompressionMethod.None - ? "A compressed frame is without an available decompression method." + ? "A compressed frame has been received without any agreement for it." : frame.Rsv2 == Rsv.On ? "The RSV2 of a frame is non-zero without any negotiation for it." : frame.Rsv3 == Rsv.On