We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010891f commit 8b55360Copy full SHA for 8b55360
library/alloc/src/collections/vec_deque.rs
@@ -2231,7 +2231,7 @@ impl<T> VecDeque<T> {
2231
/// assert_eq!(slice, &[3, 2, 1] as &[_]);
2232
/// }
2233
/// ```
2234
- #[stable(feature = "deque_make_contiguous", since = "1.47.0")]
+ #[stable(feature = "deque_make_contiguous", since = "1.48.0")]
2235
pub fn make_contiguous(&mut self) -> &mut [T] {
2236
if self.is_contiguous() {
2237
let tail = self.tail;
0 commit comments