From 26f7e2ad3331e6a13dfa33aea2349cd1acedc882 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 20 Jan 2014 17:13:27 +0900 Subject: [PATCH] Fix a few --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6e5c091..dcdda2bb 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ ws.OnMessage += (sender, e) => { If `e.Type` is `Opcode.TEXT`, you should use `e.Data` (its type is `string`) that represents the received **Text** message. -If `e.Type` is `Opcode.BINARY`, you should use `e.RawData` (its type is `byte []`) that represents the received **Binary** message. +Or if `e.Type` is `Opcode.BINARY`, you should use `e.RawData` (its type is `byte []`) that represents the received **Binary** message. ```cs if (e.Type == Opcode.TEXT) {