Skip to content

Commit

Permalink
Rollup merge of rust-lang#41526 - steveklabnik:gh35950, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
Clean up TcpStream example

Fixes rust-lang#35950
  • Loading branch information
frewsxcv authored Apr 27, 2017
2 parents 9a9420e + 7b7fe9b commit 095936c
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/libstd/net/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,24 +72,23 @@ pub struct TcpStream(net_imp::TcpStream);
///
/// # Examples
///
/// ```no_run
/// ```
/// # use std::io;
/// use std::net::{TcpListener, TcpStream};
///
/// let listener = TcpListener::bind("127.0.0.1:80").unwrap();
///
/// fn handle_client(stream: TcpStream) {
/// // ...
/// }
///
/// # fn process() -> io::Result<()> {
/// let listener = TcpListener::bind("127.0.0.1:80").unwrap();
///
/// // accept connections and process them serially
/// for stream in listener.incoming() {
/// match stream {
/// Ok(stream) => {
/// handle_client(stream);
/// }
/// Err(e) => { /* connection failed */ }
/// }
/// handle_client(stream?);
/// }
/// # Ok(())
/// # }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub struct TcpListener(net_imp::TcpListener);
Expand Down

0 comments on commit 095936c

Please sign in to comment.