Skip to content

Commit

Permalink
The syntax is dot, not dotty
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Nov 16, 2024
1 parent 13b8252 commit 90f1081
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ fn app() -> clap::Command<'static> {
).help_heading("DEBUG OPTIONS"),
)
.arg(
Arg::new("dump-syntax-dotty")
.long("dump-syntax-dotty")
Arg::new("dump-syntax-dot")
.long("dump-syntax-dot")
.takes_value(true)
.value_name("PATH")
.long_help(
"Parse a single file with tree-sitter and display the difftastic syntax tree, as a dotty graph.",
"Parse a single file with tree-sitter and display the difftastic syntax tree, as a DOT graph.",
).help_heading("DEBUG OPTIONS"),
)
.arg(
Expand Down

0 comments on commit 90f1081

Please sign in to comment.