From a3a2f4200769947a3f95a42cd8ac33543b7c9ebf Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 23 Jan 2014 17:01:12 +0900 Subject: [PATCH] Modified Step 5 of 'WebSocket Client' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 659b16ce..866fe6b6 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ If you want to send a data asynchronously, you should use the `WebSocket.SendAsy ws.SendAsync (data, completed); ``` -And if you want to do something when the send is complete, you should set any action to `completed` (its type is `Action`). +And if you want to do something when the send is complete, you should set `completed` to any `Action`. #### Step 6 ####