diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs index 79a36d7248df4..329c1437f29f1 100644 --- a/src/liballoc/collections/vec_deque.rs +++ b/src/liballoc/collections/vec_deque.rs @@ -2713,7 +2713,7 @@ impl From> for VecDeque { /// /// This avoids reallocating where possible, but the conditions for that are /// strict, and subject to change, and so shouldn't be relied upon unless the - /// `Vec` came from `From>` has hasn't been reallocated. + /// `Vec` came from `From>` and hasn't been reallocated. /// /// # Examples ///