From b85a66196721a1e093111ffb597d8c594a31105e Mon Sep 17 00:00:00 2001 From: WiredSound Date: Mon, 4 Jan 2021 15:20:35 +0000 Subject: [PATCH] Minor change to wording of README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0351db..091eac2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ fn main () { let mut websocket = accept(stream.unwrap()).unwrap(); loop { let msg = websocket.read_message().unwrap(); - + // We do not want to send back ping/pong messages. if msg.is_binary() || msg.is_text() { 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 -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 ------------