diff options
| author | Seo Sanghyeon <sanxiyn@gmail.com> | 2017-01-10 20:27:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-10 20:27:42 +0900 |
| commit | 25a9d9192950372ccf57ff610ebb15338f8030dd (patch) | |
| tree | 45a1d01d877f23d1f0a1ec88063c090e08424196 /src/libstd/net | |
| parent | d350c9b15f3588525c043fd71872506345fd8281 (diff) | |
| parent | ae23f036f0eacb7feea45b0df6611af1a4fde9ef (diff) | |
| download | rust-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.rs | 2 |
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) => { |
