From 58ac9ea03b896884cae46bade47758eae0cebcb5 Mon Sep 17 00:00:00 2001 From: Timothy Roberts <39689890+timrobertsdev@users.noreply.github.com> Date: Sun, 31 Jan 2021 02:47:26 -0500 Subject: [PATCH] Fix typo in ch-20-01-single-threaded.md --- src/ch20-01-single-threaded.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch20-01-single-threaded.md b/src/ch20-01-single-threaded.md index 0eae4a06b..7b41fcdbe 100644 --- a/src/ch20-01-single-threaded.md +++ b/src/ch20-01-single-threaded.md @@ -48,7 +48,7 @@ Using `TcpListener`, we can listen for TCP connections at the address `127.0.0.1:7878`. In the address, the section before the colon is an IP address representing your computer (this is the same on every computer and doesn’t represent the authors’ computer specifically), and `7878` is the port. We’ve -chosen this port for two reasons: HTTP is normally accepted on this port, and +chosen this port for two reasons: HTTP isn't normally accepted on this port, and 7878 is *rust* typed on a telephone. The `bind` function in this scenario works like the `new` function in that it