From 44bc7b94b2483674d7d68749f564fc53a8fe8659 Mon Sep 17 00:00:00 2001 From: xermicus Date: Mon, 5 Aug 2024 18:27:38 +0200 Subject: [PATCH] typo Signed-off-by: xermicus --- crates/common/src/byte_length.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/common/src/byte_length.rs b/crates/common/src/byte_length.rs index e452ca2..7af12fd 100644 --- a/crates/common/src/byte_length.rs +++ b/crates/common/src/byte_length.rs @@ -7,9 +7,9 @@ pub const BYTE_LENGTH_BYTE: usize = 1; pub const BYTE_LENGTH_X32: usize = 4; /// Native stack alignment size in bytes -#[cfg(not(feautre = "riscv-64"))] +#[cfg(not(feature = "riscv-64"))] pub const BYTE_LENGTH_STACK_ALIGN: usize = 4; -#[cfg(feautre = "riscv-64")] +#[cfg(feature = "riscv-64")] pub const BYTE_LENGTH_STACK_ALIGN: usize = 8; /// The x86_64 word byte-length.