Update ch20-01-single-threaded.md

This commit is contained in:
Zehua Zou 2021-02-07 01:46:26 +08:00 committed by GitHub
parent 5c29c8d652
commit 5f225daae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,7 +360,7 @@ fn handle_connection(mut stream: TcpStream) {
// --snip--
fn handle_connection(mut stream: TcpStream) {
# let mut buffer = [0; 512];
# let mut buffer = [0; 1024];
# stream.read(&mut buffer).unwrap();
#
# let get = b"GET / HTTP/1.1\r\n";