Skip to content

Commit

Permalink
unchanged
Browse files Browse the repository at this point in the history
  • Loading branch information
burrbull committed Feb 4, 2024
1 parent a4cf1dd commit b5e249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn parse_configs(app: Command) -> Result<Config> {
let mut f = f.split(":");
if let (Some(n), Some(p), Some(c), Some(s)) = (f.next(), f.next(), f.next(), f.next()) {
let case = match c {
"" => None,
"" | "unchanged" | "svd" => None,
"p" | "pascal" | "type" => Some(Case::Pascal),
"s" | "snake" | "lower" => Some(Case::Snake),
"c" | "constant" | "upper" => Some(Case::Constant),
Expand Down

0 comments on commit b5e249c

Please sign in to comment.