Skip to content

Commit 901c7eb

Browse files
authored
Update gf32_ext.rs
1 parent 88e9d0a commit 901c7eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/primitives/gf32_ext.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ where
108108
}
109109
}
110110

111-
// We just use naive n^2 muliplication because this is easy to write in
111+
// We just use naive n^2 multiplication because this is easy to write in
112112
// generic code, and because our GF32 implementation makes multiplication
113113
// (almost) as cheap as addition.
114114
//
@@ -269,7 +269,7 @@ impl Field for Fe32768 {
269269
// Unlike in the GF1024 case we don't bother being generic over
270270
// arbitrary values of POLYNOMIAL, since doing so means a ton
271271
// of extra work for everybody (me, the reviewer, and the CPU
272-
// that has to do a bunch of mulitplications by values that
272+
// that has to do a bunch of multiplications by values that
273273
// turn out to always be 0).
274274
debug_assert_eq!(Self::POLYNOMIAL, Self::new([Fe32::P, Fe32::P, Fe32::Q]));
275275
// Aliases to make the below equations easier to read

0 commit comments

Comments
 (0)