From e3ff26a2d5ff64c35d8cbb1870dee8bf8c536d71 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 6 Jul 2013 00:34:27 +0900 Subject: [PATCH] Modified README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a13d4274..0a7bda64 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ namespace Example { { protected override void OnMessage(MessageEventArgs e) { - var msg = e.Data.Equals("balus", StringComparison.InvariantCultureIgnoreCase) + var msg = e.Data.ToLower().Equals("balus") ? "I've been balused already..." : "I'm not available now."; Send(msg); @@ -347,16 +347,16 @@ Examples of using **websocket-sharp**. Please access [http://localhost:4649](http://localhost:4649) to do WebSocket Echo Test with your web browser after [Example3] running. -## Required Environment ## - -C# **3.0**, .NET **3.5** compatible or later. - ## websocket-sharp for Unity ## **websocket-sharp** has now been displayed on the **Unity Asset Store**! - **[websocket-sharp for Unity]** +## Required Environment ## + +C# **3.0**, .NET **3.5** compatible or later. + ## Supported WebSocket Specifications ## **websocket-sharp** supports **[RFC 6455]**.