Fix typo (#76)

Typo found with codespell.
This commit is contained in:
Tobias Stoeckmann 2024-03-06 14:36:20 +01:00 committed by GitHub
parent f577814484
commit 35b0ae32c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ fn u32_fastrand(b: &mut Bencher) {
fn fill(b: &mut Bencher) {
let mut rng = fastrand::Rng::new();
b.iter(|| {
// Pick a size that isn't divisble by 8.
// Pick a size that isn't divisible by 8.
let mut bytes = [0u8; 367];
rng.fill(&mut bytes);
bytes