Skip to content

Commit 8f02ac9

Browse files
format fix
1 parent e10a8f6 commit 8f02ac9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

library/core/src/slice/memchr.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pub mod verify {
172172
#[cfg(not(all(target_arch = "x86_64", target_feature = "sse2")))]
173173
pub fn check_memchr_naive() {
174174
const ARR_SIZE: usize = 1000;
175-
let x: u8 = kani::any();
175+
let x: u8 = kani::any();
176176
let a: [u8; ARR_SIZE] = kani::any();
177177
let text = kani::slice::any_slice_of_array(&a);
178178
let _result = memchr_naive(x, text);
@@ -182,10 +182,9 @@ pub mod verify {
182182
#[cfg(not(all(target_arch = "x86_64", target_feature = "sse2")))]
183183
pub fn check_memchr_naive() {
184184
const ARR_SIZE: usize = 1000;
185-
let x: u8 = kani::any();
185+
let x: u8 = kani::any();
186186
let a: [u8; ARR_SIZE] = kani::any();
187187
let text = kani::slice::any_slice_of_array(&a);
188188
let _result = memrchr(x, text);
189189
}
190-
191190
}

0 commit comments

Comments
 (0)