diff options
| author | Mina Naguib <minaguib@users.noreply.github.com> | 2017-01-03 14:52:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-03 14:52:14 -0500 |
| commit | ae23f036f0eacb7feea45b0df6611af1a4fde9ef (patch) | |
| tree | baf5cc0f59dc20852a44ce2381f1aa82b2586eed /src/libstd/net | |
| parent | 8f62c2920077eb5cb81323142fc5dbe6ae8813c0 (diff) | |
| download | rust-ae23f036f0eacb7feea45b0df6611af1a4fde9ef.tar.gz rust-ae23f036f0eacb7feea45b0df6611af1a4fde9ef.zip | |
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 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) => { |
