about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-06-06 18:58:35 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-06-06 18:58:35 -0400
commita3b19c8858ec6dd29d71fde7bc2d78b2ac386d34 (patch)
tree64d843ca423a4ad874bf22bbc066994796778701 /src/liballoc
parentef72938a8b9171abc5c4b463d3e8345dc0e603a6 (diff)
downloadrust-a3b19c8858ec6dd29d71fde7bc2d78b2ac386d34.tar.gz
rust-a3b19c8858ec6dd29d71fde7bc2d78b2ac386d34.zip
Remove many unneeded feature annotations in the docs
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;
     ///
     /// {