This commit is contained in:
Mina Naguib 2017-01-03 14:52:14 -05:00 committed by GitHub
parent 8f62c29200
commit ae23f036f0

View File

@ -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) => {