Skip to content

Commit

Permalink
Fix doc typos (#1813)
Browse files Browse the repository at this point in the history
  • Loading branch information
SekoiaTree authored Feb 8, 2025
1 parent 83aceef commit d297063
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bytes/complete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ where
move |i: I| parser.process::<OutputM<Emit, Emit, Complete>>(i)
}

/// Returns the longest slice of the matches the pattern.
/// Returns the longest input slice (at least 1) that matches the pattern.
///
/// The parser will return the longest slice consisting of the characters in provided in the
/// combinator's argument.
Expand Down
2 changes: 1 addition & 1 deletion src/bytes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ where
}
}

/// Returns the longest slice of the matches the pattern.
/// Returns the longest input slice (at least 1) that matches the pattern.
///
/// The parser will return the longest slice consisting of the characters in provided in the
/// combinator's argument.
Expand Down
2 changes: 1 addition & 1 deletion src/bytes/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ where
move |i: I| parser.process::<OutputM<Emit, Emit, Streaming>>(i)
}

/// Returns the longest slice of the matches the pattern.
/// Returns the longest input slice (at least 1) that matches the pattern.
///
/// The parser will return the longest slice consisting of the characters in provided in the
/// combinator's argument.
Expand Down

0 comments on commit d297063

Please sign in to comment.