File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/starknet-types-core/src/felt Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ impl Felt {
281
281
Self ( self . 0 . pow ( exponent. 0 . representative ( ) ) )
282
282
}
283
283
284
- // Implemention taken from Jonathan Lei's starknet-rs
284
+ // Implementation taken from Jonathan Lei's starknet-rs
285
285
// https://github.com/xJonathanLEI/starknet-rs/blob/a3a0050f80e90bd40303256a85783f4b5b18258c/starknet-crypto/src/fe_utils.rs#L20
286
286
/// Modular multiplication between `self` and `rhs` in modulo `p`.
287
287
pub fn mul_mod ( & self , rhs : & Self , p : & NonZeroFelt ) -> Self {
@@ -299,7 +299,7 @@ impl Felt {
299
299
Felt :: from_bytes_be ( & result)
300
300
}
301
301
302
- // Implemention taken from Jonathan Lei's starknet-rs
302
+ // Implementation taken from Jonathan Lei's starknet-rs
303
303
// https://github.com/xJonathanLEI/starknet-rs/blob/a3a0050f80e90bd40303256a85783f4b5b18258c/starknet-crypto/src/fe_utils.rs#L46
304
304
/// Multiplicative inverse of `self` in modulo `p`.
305
305
pub fn mod_inverse ( & self , p : & NonZeroFelt ) -> Option < Self > {
You can’t perform that action at this time.
0 commit comments