Skip to content

Commit

Permalink
fix deps doc
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Jun 22, 2023
1 parent 1fb038c commit 190d0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/parse-hyperlinks/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use nom::IResult;
/// ```
/// use nom::bytes::complete::tag;
/// use nom::sequence::delimited;
/// use parse_hyperlinks::take_until_unbalanced;
/// use cairo_take_until_unbalanced::take_until_unbalanced;
///
/// let mut parser = delimited(tag("<"), take_until_unbalanced('<', '>'), tag(">"));
/// assert_eq!(parser("<<inside>inside>abc"), Ok(("abc", "<inside>inside")));
Expand Down

0 comments on commit 190d0df

Please sign in to comment.