Skip to content

Commit

Permalink
Merge pull request #326 from nicopap/typo-fix
Browse files Browse the repository at this point in the history
Fix minor typos
  • Loading branch information
epage authored Sep 4, 2023
2 parents 0e90053 + 8239e7f commit 2e51af3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@ pub trait Stream: Offset<<Self as Stream>::Checkpoint> + crate::lib::std::fmt::D

/// Iterate with the offset from the current location
fn iter_offsets(&self) -> Self::IterOffsets;
/// Returns the offaet to the end of the input

/// Returns the offset to the end of the input
fn eof_offset(&self) -> usize;

/// Split off the next token from the input
Expand Down
2 changes: 1 addition & 1 deletion src/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ compile_error!("`debug` requires `std`");

/// Trace the execution of the parser
///
/// Note that [`Parser::context` also provides high level trace information.
/// Note that [`Parser::context`] also provides high level trace information.
///
/// See [`trace` module][self] for more details.
///
Expand Down

0 comments on commit 2e51af3

Please sign in to comment.