Fallout from stabilization

This commit is contained in:
Aaron Turon
2015-02-17 15:10:25 -08:00
parent d8f8f7a58c
commit d0de2b46e9
89 changed files with 578 additions and 558 deletions

View File

@@ -124,7 +124,7 @@
//! # #![allow(dead_code)]
//! use std::old_io::{TcpListener, TcpStream};
//! use std::old_io::{Acceptor, Listener};
//! use std::thread::Thread;
//! use std::thread;
//!
//! let listener = TcpListener::bind("127.0.0.1:80");
//!
@@ -140,7 +140,7 @@
//! match stream {
//! Err(e) => { /* connection failed */ }
//! Ok(stream) => {
//! Thread::spawn(move|| {
//! thread::spawn(move|| {
//! // connection succeeded
//! handle_client(stream)
//! });