Skip to content

Commit 7a433e4

Browse files
committed
fill-in tracking issue for feature(drain_keep_rest)
1 parent 8c4e0d4 commit 7a433e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/alloc/src/vec/drain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl<'a, T, A: Allocator> Drain<'a, T, A> {
8585
/// // `vec` would be empty.
8686
/// assert_eq!(vec, ['b', 'c']);
8787
/// ```
88-
#[unstable(feature = "drain_keep_rest", issue = "none")]
88+
#[unstable(feature = "drain_keep_rest", issue = "101122")]
8989
pub fn keep_rest(self) {
9090
// At this moment layout looks like this:
9191
//

library/alloc/src/vec/drain_filter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ where
7676
/// // `vec` would be empty.
7777
/// assert_eq!(vec, ['b', 'c']);
7878
/// ```
79-
#[unstable(feature = "drain_keep_rest", issue = "none")]
79+
#[unstable(feature = "drain_keep_rest", issue = "101122")]
8080
pub fn keep_rest(self) {
8181
// At this moment layout looks like this:
8282
//

0 commit comments

Comments
 (0)