From 34f33d8e31e2b448372217ff5d08d7df1265793d Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 8 Aug 2012 11:20:57 +0900 Subject: [PATCH] Fixed a few typo --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index b9db99d6..dcda613e 100644 --- a/README.md +++ b/README.md @@ -134,19 +134,19 @@ Creating a class that inherits `WebSocketService` class. For example, if you want to provide the echo service, - ```cs - using System; - using WebSocketSharp; - using WebSocketSharp.Server; - - public class Echo : WebSocketService - { - protected override void onMessage(object sender, MessageEventArgs e) - { - Send(e.Data); - } - } - ``` +```cs +using System; +using WebSocketSharp; +using WebSocketSharp.Server; + +public class Echo : WebSocketService +{ + protected override void onMessage(object sender, MessageEventArgs e) + { + Send(e.Data); + } +} +``` For example, if you want to provide the chat service,