diff options
Diffstat (limited to 'crates/equix')
| -rw-r--r-- | crates/equix/fuzz/fuzz_targets/buckets.rs | 2 | ||||
| -rw-r--r-- | crates/equix/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/equix/fuzz/fuzz_targets/buckets.rs b/crates/equix/fuzz/fuzz_targets/buckets.rs index 597bf3837..baeda7680 100644 --- a/crates/equix/fuzz/fuzz_targets/buckets.rs +++ b/crates/equix/fuzz/fuzz_targets/buckets.rs @@ -150,7 +150,7 @@ fuzz_target!(|ex: Vec<Op>| { unsafe impl Uninit for MemLayout {} let mut ml = MemLayout::alloc(); - // Re-use the MemLayout to run the same test inputs twice + // Reuse the MemLayout to run the same test inputs twice for _ in 0..2 { let mut shape1: Sim<'_, '_, 7, 12> = Sim::Pair { b: BucketArrayPair::new(&mut ml.mem1a, &mut ml.mem1b), diff --git a/crates/equix/src/lib.rs b/crates/equix/src/lib.rs index 9789632cc..d64757249 100644 --- a/crates/equix/src/lib.rs +++ b/crates/equix/src/lib.rs @@ -113,7 +113,7 @@ impl EquiX { /// /// Returns a buffer with a variable number of solutions. /// - /// Allows re-use of solver memory. Preferred for callers which may perform + /// Allows reuse of solver memory. Preferred for callers which may perform /// several solve operations in rapid succession, such as in the common case /// of layering an effort adjustment protocol above Equi-X. pub fn solve_with_memory(&self, mem: &mut SolverMemory) -> SolutionArray { |
