about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authordylan_DPC <dylan.dpc@gmail.com>2019-12-30 17:29:03 +0530
committerdylan_DPC <dylan.dpc@gmail.com>2020-01-06 19:36:46 +0530
commit24c6cd80c3b44c5c9a33733e2524afb3e015ee92 (patch)
tree69d69d0be0e9fcef2e69980f48dcb0319f248bb2 /src/liballoc
parenta80e63f3fa77792e848e3b248acf4c0acda2e310 (diff)
downloadrust-24c6cd80c3b44c5c9a33733e2524afb3e015ee92.tar.gz
rust-24c6cd80c3b44c5c9a33733e2524afb3e015ee92.zip
stabilise remove_item
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index a27a13847d6..73c310bb2bf 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -1696,7 +1696,6 @@ impl<T> Vec<T> {
     /// # Examples
     ///
     /// ```
-    /// # #![feature(vec_remove_item)]
     /// let mut vec = vec![1, 2, 3, 1];
     ///
     /// vec.remove_item(&1);