Skip to content

Commit

Permalink
Will land in 1.48, not 1.47
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Sep 1, 2020
1 parent 010891f commit 8b55360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/src/collections/vec_deque.rs
Expand Up @@ -2231,7 +2231,7 @@ impl<T> VecDeque<T> {
/// assert_eq!(slice, &[3, 2, 1] as &[_]);
/// }
/// ```
#[stable(feature = "deque_make_contiguous", since = "1.47.0")]
#[stable(feature = "deque_make_contiguous", since = "1.48.0")]
pub fn make_contiguous(&mut self) -> &mut [T] {
if self.is_contiguous() {
let tail = self.tail;
Expand Down

0 comments on commit 8b55360

Please sign in to comment.