diff --git a/src/ch21-01-single-threaded.md b/src/ch21-01-single-threaded.md index 813a35247..8eb293fa5 100644 --- a/src/ch21-01-single-threaded.md +++ b/src/ch21-01-single-threaded.md @@ -141,7 +141,7 @@ connection, we now call the new `handle_connection` function and pass the `stream` to it. In the `handle_connection` function, we create a new `BufReader` instance that -wraps a reference to the `stream`. `BufReader` adds buffering by managing calls +wraps a reference to the `stream`. And `BufReader` adds buffering by managing calls to the `std::io::Read` trait methods for us. We create a variable named `http_request` to collect the lines of the request