diff --git a/crates/rust-analyzer/default_12483297303756020505_0.profraw b/crates/rust-analyzer/default_12483297303756020505_0.profraw new file mode 100644 index 0000000000..e49d7c1449 Binary files /dev/null and b/crates/rust-analyzer/default_12483297303756020505_0.profraw differ diff --git a/crates/stdx/src/rand.rs b/crates/stdx/src/rand.rs index b38506caef..64aa57eae0 100644 --- a/crates/stdx/src/rand.rs +++ b/crates/stdx/src/rand.rs @@ -1,8 +1,8 @@ //! We don't use `rand`, as that's too many things for us. //! -//! Currently, we use oorandom instead, but it misses these two utilities. -//! Perhaps we should switch to `fastrand`, or our own small prng, it's not like -//! we need anything move complicatied that xor-shift. +//! We currently use oorandom instead, but it's missing these two utilities. +//! Perhaps we should switch to `fastrand`, or our own small PRNG, it's not like +//! we need anything more complicated than xor-shift. pub fn shuffle(slice: &mut [T], mut rand_index: impl FnMut(usize) -> usize) { let mut remaining = slice.len() - 1;