Skip to content

Commit 5b16687

Browse files
authored
Added an issue and reason to the unstable to pas travis builds
1 parent ac4ff0a commit 5b16687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,7 @@ impl<T: PartialEq> Vec<T> {
12971297
self.dedup_by(|a, b| a == b)
12981298
}
12991299

1300-
#[unstable(feature = "remove_from")]
1300+
#[unstable(feature = "remove_from", reason = "recently added", issue = "38143")]
13011301
pub fn remove_item(&mut self, item: &T) -> Option<usize> {
13021302
let pos = match self.iter().position(|x| *x == *item) {
13031303
Some(x) => x,

0 commit comments

Comments
 (0)