Skip to content

Commit

Permalink
fill-in tracking issue for feature(drain_keep_rest)
Browse files Browse the repository at this point in the history
  • Loading branch information
WaffleLapkin committed Aug 28, 2022
1 parent 8c4e0d4 commit 7a433e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/alloc/src/vec/drain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl<'a, T, A: Allocator> Drain<'a, T, A> {
/// // `vec` would be empty.
/// assert_eq!(vec, ['b', 'c']);
/// ```
#[unstable(feature = "drain_keep_rest", issue = "none")]
#[unstable(feature = "drain_keep_rest", issue = "101122")]
pub fn keep_rest(self) {
// At this moment layout looks like this:
//
Expand Down
2 changes: 1 addition & 1 deletion library/alloc/src/vec/drain_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ where
/// // `vec` would be empty.
/// assert_eq!(vec, ['b', 'c']);
/// ```
#[unstable(feature = "drain_keep_rest", issue = "none")]
#[unstable(feature = "drain_keep_rest", issue = "101122")]
pub fn keep_rest(self) {
// At this moment layout looks like this:
//
Expand Down

0 comments on commit 7a433e4

Please sign in to comment.