From ae23f036f0eacb7feea45b0df6611af1a4fde9ef Mon Sep 17 00:00:00 2001 From: Mina Naguib Date: Tue, 3 Jan 2017 14:52:14 -0500 Subject: [PATCH] Doc fix --- src/libstd/net/tcp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/net/tcp.rs b/src/libstd/net/tcp.rs index 63817c9f10f..e225aba2bf8 100644 --- a/src/libstd/net/tcp.rs +++ b/src/libstd/net/tcp.rs @@ -52,7 +52,7 @@ pub struct TcpStream(net_imp::TcpStream); /// // ... /// } /// -/// // accept connections and process them, spawning a new thread for each one +/// // accept connections and process them serially /// for stream in listener.incoming() { /// match stream { /// Ok(stream) => {