diff options
| author | bors <bors@rust-lang.org> | 2015-06-07 17:04:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-07 17:04:40 +0000 |
| commit | 64d32b057edbf2e9223670c76df96f41e5bc1177 (patch) | |
| tree | 37c0161d4bd6ec730b440ae94e32f0e4c7c92805 /src/liballoc | |
| parent | ae74652b4a0e0e56a91d9a9dd71ab01e51131dc5 (diff) | |
| parent | a3b19c8858ec6dd29d71fde7bc2d78b2ac386d34 (diff) | |
| download | rust-64d32b057edbf2e9223670c76df96f41e5bc1177.tar.gz rust-64d32b057edbf2e9223670c76df96f41e5bc1177.zip | |
Auto merge of #26066 - steveklabnik:docs_on_a_plane, r=alexcrichton
When things get stabilized, they don't always have their docs updated to remove the gate.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/arc.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs index d12d28335dd..990a73c53ae 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -98,7 +98,6 @@ use heap::deallocate; /// increase the reference counter. /// /// ``` -/// # #![feature(alloc, core)] /// use std::sync::Arc; /// use std::thread; /// @@ -297,7 +296,6 @@ impl<T: ?Sized> Clone for Arc<T> { /// # Examples /// /// ``` - /// # #![feature(alloc)] /// use std::sync::Arc; /// /// let five = Arc::new(5); @@ -392,7 +390,6 @@ impl<T: ?Sized> Drop for Arc<T> { /// # Examples /// /// ``` - /// # #![feature(alloc)] /// use std::sync::Arc; /// /// { |
