From a90716ab1542ed3f0bcbadf10dfcccbcac2ffe1e Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 20 Jan 2014 19:33:21 +0900 Subject: [PATCH] Fix a few --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcdda2bb..8eafad4a 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ using (var ws = new WebSocket ("ws://example.com")) { } ``` -The `WebSocket` class inherits the `IDisposable` interface, so you can use the `using` statement. +The `WebSocket` class inherits the `System.IDisposable` interface, so you can use the `using` statement. #### Step 3 #### @@ -113,7 +113,7 @@ ws.OnOpen += (sender, e) => { }; ``` -`e` has passed as `EventArgs.Empty`, so you don't use `e`. +`e` has passed as the `System.EventArgs.Empty`, so you don't use `e`. ##### WebSocket.OnMessage Event #####