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

@@ -42,7 +42,7 @@
//!
//! Thread::spawn(move || {
//! println!("{}", five);
//! }).detach();
//! });
//! }
//! ```
//!
@@ -63,7 +63,7 @@
//! *number += 1;
//!
//! println!("{}", *number); // prints 6
//! }).detach();
//! });
//! }
//! ```
@@ -106,7 +106,7 @@ use heap::deallocate;
/// let local_numbers = child_numbers.as_slice();
///
/// // Work with the local numbers
/// }).detach();
/// });
/// }
/// }
/// ```