Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
tirix committed Sep 26, 2023
1 parent 50eb059 commit 053f122
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/comment_parser_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ fn test_label() {
);
check(
b"According to ~ https://en.wikipedia.org/wiki/Torsion_(algebra) , an element",
&[Text(Span::new(0, 13)), Url(13, Span::new(15, 62)), Text(Span::new(62, 75))],
&[
Text(Span::new(0, 13)),
Url(13, Span::new(15, 62)),
Text(Span::new(62, 75)),
],
);
}

Expand Down

0 comments on commit 053f122

Please sign in to comment.