Skip to content

Commit

Permalink
Better docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zesterer committed Dec 15, 2021
1 parent 695b721 commit c21c722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/combinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,6 @@ impl<
debugger: &mut D,
stream: &mut StreamOf<I, E>,
) -> PResult<I, O, E> {
let start = stream.save();
#[allow(deprecated)]
let (errors, res) = debugger.invoke(&self.0, stream);

Expand Down
2 changes: 2 additions & 0 deletions src/primitive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,8 @@ impl<I: Clone, O, F: Fn(E::Span, I) -> Result<O, E>, E: Error<I>> Parser<I, O> f
///
/// This function allows integration with custom error types to allow for custom parser errors.
///
/// Before using this function, consider whether the [`select`] macro would serve you better.
///
/// The output type of this parser is `I`, the input that was found.
///
/// # Examples
Expand Down

0 comments on commit c21c722

Please sign in to comment.