Skip to content

Commit

Permalink
minor: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpombrio committed Mar 23, 2024
1 parent fc5ebd6 commit d736de1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ fn urllang() -> LanguageSpec {
count(Count {
zero: empty(),
one: lit("?") + child(0),
many: lit("?")
many: (lit("?")
+ fold(Fold {
first: child(0),
join: left() + lit("&") + right(),
})
}))
| lit("?")
^ fold(Fold {
first: child(0),
Expand Down

0 comments on commit d736de1

Please sign in to comment.