diff --git a/yara-x/src/modules/macho/mod.rs b/yara-x/src/modules/macho/mod.rs index d5cd2e3aa..4d6faf4b7 100644 --- a/yara-x/src/modules/macho/mod.rs +++ b/yara-x/src/modules/macho/mod.rs @@ -1900,7 +1900,7 @@ fn parse_m88k_thread_state(input: &[u8]) -> IResult<&[u8], M88KThreadState> { /// /// # Errors /// -/// Returns a `nom` error if the input data is insuffidyl.exports_offcient or malformed. +/// Returns a `nom` error if the input data is insufficient or malformed. fn parse_x86_thread_state64(input: &[u8]) -> IResult<&[u8], X86ThreadState64> { let (input, rax) = le_u64(input)?; let (input, rbx) = le_u64(input)?;