Skip to content

Commit

Permalink
numfmt: fix clippy suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
sbentmar committed Jun 21, 2023
1 parent 06df5cf commit 969738c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/numfmt/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ impl FromStr for InvalidModes {
"fail" => Ok(Self::Fail),
"warn" => Ok(Self::Warn),
"ignore" => Ok(Self::Ignore),
unknown => Err(format!("Unknown invalid mode: {}", unknown)),
unknown => Err(format!("Unknown invalid mode: {unknown}")),
}
}
}
Expand Down

0 comments on commit 969738c

Please sign in to comment.