]> git.proxmox.com Git - rustc.git/blobdiff - library/alloc/src/collections/vec_deque/mod.rs
New upstream version 1.74.1+dfsg1
[rustc.git] / library / alloc / src / collections / vec_deque / mod.rs
index 5965ec2affac6d2f32f1238b81d2c6d4a7366951..4ef8af9b034751d3948b5e566d70d59a43f26e4e 100644 (file)
@@ -1015,8 +1015,8 @@ impl<T, A: Allocator> VecDeque<T, A> {
     /// Shortens the deque, keeping the first `len` elements and dropping
     /// the rest.
     ///
-    /// If `len` is greater than the deque's current length, this has no
-    /// effect.
+    /// If `len` is greater or equal to the deque's current length, this has
+    /// no effect.
     ///
     /// # Examples
     ///