Skip to content
/ rust Public
forked from rust-lang/rust

Commit 49fee8e

Browse files
authored
Rollup merge of rust-lang#152767 - folkertdev:clmul-rhs-lhs, r=joboet
fix typo in `carryless_mul` macro invocation This wouldn't really impact anyone, but it's slightly confusing, so let's fix it.
2 parents 87306a9 + f067c75 commit 49fee8e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/core/src/num/uint_macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ macro_rules! uint_impl {
1717
fsh_op = $fsh_op:literal,
1818
fshl_result = $fshl_result:literal,
1919
fshr_result = $fshr_result:literal,
20-
clmul_lhs = $clmul_rhs:literal,
21-
clmul_rhs = $clmul_lhs:literal,
20+
clmul_lhs = $clmul_lhs:literal,
21+
clmul_rhs = $clmul_rhs:literal,
2222
clmul_result = $clmul_result:literal,
2323
swap_op = $swap_op:literal,
2424
swapped = $swapped:literal,

0 commit comments

Comments
 (0)