From e0e26bc2232f6e0fa041353b9a3faa1ba23208cf Mon Sep 17 00:00:00 2001 From: Red Hara Date: Sun, 24 Mar 2019 20:02:11 +0300 Subject: [PATCH] Fix typo in README.md in examples (#1002) --- tokio/examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/examples/README.md b/tokio/examples/README.md index 63634c82b..02e5304b6 100644 --- a/tokio/examples/README.md +++ b/tokio/examples/README.md @@ -29,7 +29,7 @@ A high level description of each example is: * [`connect`](connect.rs) - this is a `nc`-like clone which can be used to interact with most other examples. The program creates a TCP connection or UDP - socket to sends all information read on stdin to the remote peer, displaying + socket and sends all information read on stdin to the remote peer, displaying any data received on stdout. Often quite useful when interacting with the various other servers here!