From c3021d852a9ce050e154edb41a318c25198df6c3 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 29 Dec 2022 14:11:25 +1100 Subject: [PATCH] Fix typo in code comment Fix a trivial grammatical mistake in code comment. --- bitcoin/src/pow.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin/src/pow.rs b/bitcoin/src/pow.rs index 633b30ed..6a9bd7aa 100644 --- a/bitcoin/src/pow.rs +++ b/bitcoin/src/pow.rs @@ -1568,8 +1568,8 @@ mod tests { fn u256_overflowing_subtraction_panics() { let _ = U256::ZERO - U256::ONE; } // We only test with test case value on the right hand side of the multiplication but that - // should be enough coverage since we call the same underlying method to do multiplication the - // sides inverted. + // should be enough coverage since we call the same underlying method to do multiplication with + // the sides inverted. macro_rules! test_u256_multiplication_panics { ($($test_name:ident, $x:expr);* $(;)?) => { $(