summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authordylan_DPC <dylan.dpc@gmail.com>2020-01-06 20:37:49 +0530
committerdylan_DPC <dylan.dpc@gmail.com>2020-01-06 20:37:49 +0530
commit6bec8e997270bed18546b350336d88879b91ff78 (patch)
tree9a0cdcd08dd1cc0efed234edf978bbbacdc16fe5 /src/liballoc
parent0a739ce0a5200f2d1360fef126a93b5c1e8205ba (diff)
downloadrust-6bec8e997270bed18546b350336d88879b91ff78.tar.gz
rust-6bec8e997270bed18546b350336d88879b91ff78.zip
stabilise it
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 73c310bb2bf..bc0cd6eff37 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -1702,7 +1702,7 @@ impl<T> Vec<T> {
     ///
     /// assert_eq!(vec, vec![2, 3, 1]);
     /// ```
-    #[unstable(feature = "vec_remove_item", reason = "recently added", issue = "40062")]
+    #[stable(feature = "vec_remove_item", since = "1.42.0")]
     pub fn remove_item<V>(&mut self, item: &V) -> Option<T>
     where
         T: PartialEq<V>,