From a867774c753c38597ff0c2f252da8c68242a46f3 Mon Sep 17 00:00:00 2001 From: Thomas Coratger <60488569+tcoratger@users.noreply.github.com> Date: Tue, 7 May 2024 16:16:50 +0200 Subject: [PATCH] fix typo (#65) --- crates/starknet-types-core/src/felt/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),