Skip to content

Commit c959fbe

Browse files
committedDec 1, 2022
Fix typo in comment
1 parent 929003a commit c959fbe

File tree

1 file changed

+1
-1
lines changed
  • library/alloc/src/collections/vec_deque

1 file changed

+1
-1
lines changed
 

‎library/alloc/src/collections/vec_deque/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2151,7 +2151,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
21512151

21522152
self.head = tail;
21532153
} else {
2154-
// ´free` is smaller than both `head_len` and `tail_len`.
2154+
// `free` is smaller than both `head_len` and `tail_len`.
21552155
// the general algorithm for this first moves the slices
21562156
// right next to each other and then uses `slice::rotate`
21572157
// to rotate them into place:

0 commit comments

Comments
 (0)
Please sign in to comment.