about summary refs log tree commit diff
path: root/src/libstd/net
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2017-01-10 20:27:42 +0900
committerGitHub <noreply@github.com>2017-01-10 20:27:42 +0900
commit25a9d9192950372ccf57ff610ebb15338f8030dd (patch)
tree45a1d01d877f23d1f0a1ec88063c090e08424196 /src/libstd/net
parentd350c9b15f3588525c043fd71872506345fd8281 (diff)
parentae23f036f0eacb7feea45b0df6611af1a4fde9ef (diff)
downloadrust-25a9d9192950372ccf57ff610ebb15338f8030dd.tar.gz
rust-25a9d9192950372ccf57ff610ebb15338f8030dd.zip
Rollup merge of #38799 - minaguib:patch-1, r=steveklabnik
Doc fix
Diffstat (limited to 'src/libstd/net')
-rw-r--r--src/libstd/net/tcp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/net/tcp.rs b/src/libstd/net/tcp.rs
index ed1f08f9c90..e203789ce81 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) => {