Fallout from stabilization

This commit is contained in:
Aaron Turon
2015-01-05 21:59:45 -08:00
parent f67b81e8d4
commit caca9b2e71
97 changed files with 245 additions and 248 deletions

View File

@@ -120,10 +120,12 @@
//! for stream in acceptor.incoming() {
//! match stream {
//! Err(e) => { /* connection failed */ }
//! Ok(stream) => Thread::spawn(move|| {
//! // connection succeeded
//! handle_client(stream)
//! }).detach()
//! Ok(stream) => {
//! Thread::spawn(move|| {
//! // connection succeeded
//! handle_client(stream)
//! });
//! }
//! }
//! }
//!