Skip to content

Commit

Permalink
Remove another mention of old flag name
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Nov 16, 2024
1 parent 430db0e commit 956b09a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ fn main() {
}
}
}
Mode::DumpSyntaxDotty {
Mode::DumpSyntaxDot {
path,
ignore_comments,
language_overrides,
Expand Down
4 changes: 2 additions & 2 deletions src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ pub(crate) enum Mode {
ignore_comments: bool,
language_overrides: Vec<(LanguageOverride, Vec<glob::Pattern>)>,
},
DumpSyntaxDotty {
DumpSyntaxDot {
path: String,
ignore_comments: bool,
language_overrides: Vec<(LanguageOverride, Vec<glob::Pattern>)>,
Expand Down Expand Up @@ -659,7 +659,7 @@ pub(crate) fn parse_args() -> Mode {
}

if let Some(path) = matches.value_of("dump-syntax-dot") {
return Mode::DumpSyntaxDotty {
return Mode::DumpSyntaxDot {
path: path.to_owned(),
ignore_comments,
language_overrides,
Expand Down

0 comments on commit 956b09a

Please sign in to comment.