Skip to content

Commit 0776bc5

Browse files
committed
fix: grammatical mistake
1 parent 71e9451 commit 0776bc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ui/manual_memcpy/without_loop_counters.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ pub fn manual_copy(src: &[i32], dst: &mut [i32], dst2: &mut [i32]) {
159159
dst[i] = src[i];
160160
}
161161

162-
// Don't trigger lint for following multi-dimension arrays
162+
// Don't trigger lint for following multi-dimensional arrays
163163
let src = [[0; 5]; 5];
164164
for i in 0..4 {
165165
dst[i] = src[i + 1][i];

0 commit comments

Comments
 (0)