From 710c46a58e7f7ce266f8300334beedce2e62238f Mon Sep 17 00:00:00 2001 From: viktorking7 <140458814+viktorking7@users.noreply.github.com> Date: Thu, 25 Sep 2025 14:33:59 +0200 Subject: [PATCH] Update lib.rs --- light-poseidon/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/light-poseidon/src/lib.rs b/light-poseidon/src/lib.rs index 6b51336..63c39b1 100644 --- a/light-poseidon/src/lib.rs +++ b/light-poseidon/src/lib.rs @@ -469,9 +469,9 @@ where } macro_rules! impl_bytes_to_prime_field_element { - ($name:ident, $from_bytes_method:ident, $endianess:expr) => { + ($name:ident, $from_bytes_method:ident, $endianness:expr) => { #[doc = "Converts a slice of "] - #[doc = $endianess] + #[doc = $endianness] #[doc = "-endian bytes into a prime field element, \ represented by the [`ark_ff::PrimeField`](ark_ff::PrimeField) trait."] pub fn $name(input: &[u8]) -> Result