Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sigoden committed Apr 9, 2024
1 parent 33704bb commit 3865f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/param.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Param for FlagOptionParam {
if self.prefixed || self.data.name.ends_with('-') {
name_suffix.push('-');
}
if self.assigned || self.data.name.ends_with(":") {
if self.assigned || self.data.name.ends_with(':') {
name_suffix.push(':');
}
output.push(format!(
Expand Down

0 comments on commit 3865f2f

Please sign in to comment.