1
Fork 0

Add clarity to the "greater" of VecDeque::insert

This commit is contained in:
tkirishima 2024-12-14 14:03:58 +00:00
parent ea048cf055
commit 891a75b3a1

View file

@ -1869,7 +1869,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
///
/// # Panics
///
/// Panics if `index` is greater than deque's length
/// Panics if `index` is strictly greater than deque's length
///
/// # Examples
///