about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-06-07 17:04:40 +0000
committerbors <bors@rust-lang.org>2015-06-07 17:04:40 +0000
commit64d32b057edbf2e9223670c76df96f41e5bc1177 (patch)
tree37c0161d4bd6ec730b440ae94e32f0e4c7c92805 /src/liballoc
parentae74652b4a0e0e56a91d9a9dd71ab01e51131dc5 (diff)
parenta3b19c8858ec6dd29d71fde7bc2d78b2ac386d34 (diff)
downloadrust-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.rs3
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;
     ///
     /// {