Skip to content

Commit

Permalink
Update options parsing for new flag spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Nov 16, 2024
1 parent 39e6458 commit 430db0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ pub(crate) fn parse_args() -> Mode {
};
}

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

0 comments on commit 430db0e

Please sign in to comment.