Fix typo in code comment

Fix a trivial grammatical mistake in code comment.
This commit is contained in:
Tobin C. Harding 2022-12-29 14:11:25 +11:00
parent e36ae3a229
commit c3021d852a
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 2 additions and 2 deletions

View File

@ -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);* $(;)?) => {
$(