Skip to content

Commit 34f33d8

Browse files
committed
Fixed a few typo
1 parent 64d12eb commit 34f33d8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -134,19 +134,19 @@ Creating a class that inherits `WebSocketService` class.
134134

135135
For example, if you want to provide the echo service,
136136

137-
```cs
138-
using System;
139-
using WebSocketSharp;
140-
using WebSocketSharp.Server;
141-
142-
public class Echo : WebSocketService
143-
{
144-
protected override void onMessage(object sender, MessageEventArgs e)
145-
{
146-
Send(e.Data);
147-
}
148-
}
149-
```
137+
```cs
138+
using System;
139+
using WebSocketSharp;
140+
using WebSocketSharp.Server;
141+
142+
public class Echo : WebSocketService
143+
{
144+
protected override void onMessage(object sender, MessageEventArgs e)
145+
{
146+
Send(e.Data);
147+
}
148+
}
149+
```
150150

151151
For example, if you want to provide the chat service,
152152

0 commit comments

Comments
 (0)