Skip to content

Commit 8b55360

Browse files
committed
Will land in 1.48, not 1.47
1 parent 010891f commit 8b55360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/collections/vec_deque.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2231,7 +2231,7 @@ impl<T> VecDeque<T> {
22312231
/// assert_eq!(slice, &[3, 2, 1] as &[_]);
22322232
/// }
22332233
/// ```
2234-
#[stable(feature = "deque_make_contiguous", since = "1.47.0")]
2234+
#[stable(feature = "deque_make_contiguous", since = "1.48.0")]
22352235
pub fn make_contiguous(&mut self) -> &mut [T] {
22362236
if self.is_contiguous() {
22372237
let tail = self.tail;

0 commit comments

Comments
 (0)