Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
latonis committed Jan 15, 2024
1 parent 67147c5 commit 9a49396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yara-x/src/modules/macho/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;
Expand Down

0 comments on commit 9a49396

Please sign in to comment.