diff --git a/crates/starknet-types-core/src/felt/mod.rs b/crates/starknet-types-core/src/felt/mod.rs index 9cf266f2..a5d75846 100644 --- a/crates/starknet-types-core/src/felt/mod.rs +++ b/crates/starknet-types-core/src/felt/mod.rs @@ -121,7 +121,7 @@ impl Felt { ]); /// Creates a new [Felt] from the raw internal representation. - /// See [UnisgnedInteger] to understand how it works under the hood. + /// See [UnsignedInteger] to understand how it works under the hood. pub const fn from_raw(val: [u64; 4]) -> Self { Self(FieldElement::::const_from_raw( UnsignedInteger::from_limbs(val),