Skip to content

Commit 2c10a04

Browse files
committed
Fix markdown links.
1 parent a29c0b1 commit 2c10a04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This repository contains a barebones WebSocket server and client implementation
88
written in 100% Java. The underlying classes are implemented using the Java
99
`ServerSocketChannel` and `SocketChannel` classes, which allows for a
1010
non-blocking event-driven model (similar to the
11-
[WebSocket API](<http://dev.w3.org/html5/websockets/>) for web browsers).
11+
[WebSocket API](http://dev.w3.org/html5/websockets/) for web browsers).
1212

1313
Running the Example
1414
-------------------
@@ -40,14 +40,14 @@ text box.
4040
There's also a simple HTML file chat client `chat.html`, which can be opened
4141
by any browser. If the browser natively supports the WebSocket API, then it's
4242
implementation will be used, otherwise it will fall back to a
43-
[Flash-based WebSocket Implementation](<http://github.com/gimite/web-socket-js>).
43+
[Flash-based WebSocket Implementation](http://github.com/gimite/web-socket-js).
4444

4545
Writing your own WebSocket Server
4646
---------------------------------
4747

4848
The `net.tootallnate.websocket.WebSocketServer` abstract class implements the
4949
server-side of the
50-
[WebSocket Protocol](<http://www.whatwg.org/specs/web-socket-protocol/>).
50+
[WebSocket Protocol](http://www.whatwg.org/specs/web-socket-protocol/).
5151
A WebSocket server by itself doesn't do anything except establish socket
5252
connections though HTTP. After that it's up to **your** subclass to add purpose.
5353

0 commit comments

Comments
 (0)