Skip to content

Commit 626de86

Browse files
committed
carryless_mul: mention the base
1 parent dfbfbf7 commit 626de86

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
@@ -487,8 +487,8 @@ macro_rules! uint_impl {
487487

488488
/// Performs a carry-less multiplication, returning the lower bits.
489489
///
490-
/// This operation is similar to long multiplication, except that exclusive or is used
491-
/// instead of addition. The implementation is equivalent to:
490+
/// This operation is similar to long multiplication in base 2, except that exclusive or is
491+
/// used instead of addition. The implementation is equivalent to:
492492
///
493493
/// ```no_run
494494
#[doc = concat!("pub fn carryless_mul(lhs: ", stringify!($SelfT), ", rhs: ", stringify!($SelfT), ") -> ", stringify!($SelfT), "{")]

0 commit comments

Comments
 (0)