Rollup merge of #38799 - minaguib:patch-1, r=steveklabnik

Doc fix
This commit is contained in:
Seo Sanghyeon 2017-01-10 20:27:42 +09:00 committed by GitHub
commit 25a9d91929

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