Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
fowenix committed Jun 20, 2023
1 parent 5d99852 commit a94f46b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,10 @@ pub trait Parser<'a, I: Input<'a>, O, E: ParserExtra<'a, I> = extra::Default>:
/// assert_eq!(successive_letters.parse(b"ab").into_result(), Ok(b'b')); // 'b' follows 'a'
/// assert!(successive_letters.parse(b"ac").has_errors()); // 'c' does not follow 'a'
/// ```
fn then_into_ctx<U, P>(self, then: P) -> ThenIntoCtx<Self, P, O, I, extra::Full<E::Error, E::State, O>>
fn then_into_ctx<U, P>(
self,
then: P,
) -> ThenIntoCtx<Self, P, O, I, extra::Full<E::Error, E::State, O>>
where
Self: Sized,
O: 'a,
Expand Down

0 comments on commit a94f46b

Please sign in to comment.