about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJon Gjengset <jon@thesquareplanet.com>2020-09-01 09:50:32 -0400
committerJon Gjengset <jon@thesquareplanet.com>2020-09-01 09:50:32 -0400
commit8b55360f702bc4a0b0bc9fdef51c36145303eea7 (patch)
tree40dc1c4539415ea522d227ac184552b84de54b49
parent010891f8b83d0795d8d92770755f0a0cc1d0a91d (diff)
downloadrust-8b55360f702bc4a0b0bc9fdef51c36145303eea7.tar.gz
rust-8b55360f702bc4a0b0bc9fdef51c36145303eea7.zip
Will land in 1.48, not 1.47
-rw-r--r--library/alloc/src/collections/vec_deque.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/collections/vec_deque.rs b/library/alloc/src/collections/vec_deque.rs
index 22144704fef..a4c6ccd6cb0 100644
--- a/library/alloc/src/collections/vec_deque.rs
+++ b/library/alloc/src/collections/vec_deque.rs
@@ -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;