Skip to content

Commit 1684dc0

Browse files
committed
docs
1 parent 42b5f3d commit 1684dc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
WebSocket frame parser
2-
======================
1+
WebSocket frame parser and builder
2+
==================================
33

4-
This is a parser for WebSocket frame-messages (see [RFC6455](https://tools.ietf.org/html/rfc6455)) written in C.
4+
This is a parser and builder for WebSocket messages (see [RFC6455](https://tools.ietf.org/html/rfc6455)) written in C.
55

66
### Features
77
* Fast parsing and building of websocket messages
@@ -109,7 +109,7 @@ build frame
109109
websocket_build_frame(frame, WS_OP_TEXT | WS_FINAL_FRAME | WS_HAS_MASK, mask, data, data_len);
110110
```
111111
112-
and send binary string via socket
112+
and send binary string
113113
114114
```c
115115
write(sock, frame, frame_len);

0 commit comments

Comments
 (0)