Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Mar 24, 2024
1 parent 53b9906 commit f7f3989
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ pub enum Kind {
/// `?` 63
/// Optional: `:name?-`
Optional,
/// Optional Segment: `/:name?/` or `/:name?`
/// Optional segment: `/:name?/` or `/:name?`
OptionalSegment,
// Optional,
/// `+` 43
OneOrMore,
/// `*` 42
/// ZeroOrMore: `*-`
/// Zero or more: `*-`
ZeroOrMore,
/// ZeroOrMore Segment: `/*/` or `/*`
/// Zero or more segment: `/*/` or `/*`
ZeroOrMoreSegment,
// TODO: regexp
}
Expand Down

0 comments on commit f7f3989

Please sign in to comment.