Minor change to wording of README

pull/168/head
WiredSound 4 years ago
parent 0b34bee94f
commit b85a661967
  1. 4
      README.md

@ -15,7 +15,7 @@ fn main () {
let mut websocket = accept(stream.unwrap()).unwrap(); let mut websocket = accept(stream.unwrap()).unwrap();
loop { loop {
let msg = websocket.read_message().unwrap(); let msg = websocket.read_message().unwrap();
// We do not want to send back ping/pong messages. // We do not want to send back ping/pong messages.
if msg.is_binary() || msg.is_text() { if msg.is_binary() || msg.is_text() {
websocket.write_message(msg).unwrap(); websocket.write_message(msg).unwrap();
@ -64,7 +64,7 @@ Testing
------- -------
Tungstenite is thoroughly tested and passes the [Autobahn Test Suite](https://crossbar.io/autobahn/) for Tungstenite is thoroughly tested and passes the [Autobahn Test Suite](https://crossbar.io/autobahn/) for
WebSockets. It is also covered by internal unit tests as good as possible. WebSockets. It is also covered by internal unit tests as well as possible.
Contributing Contributing
------------ ------------

Loading…
Cancel
Save