Fix typo in comment

This commit is contained in:
Markus Everling 2022-12-01 12:44:29 +01:00
parent 929003aacf
commit c959fbe771

View File

@ -2151,7 +2151,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
self.head = tail;
} else {
// ´free` is smaller than both `head_len` and `tail_len`.
// `free` is smaller than both `head_len` and `tail_len`.
// the general algorithm for this first moves the slices
// right next to each other and then uses `slice::rotate`
// to rotate them into place: