diff options
author | akfm <akfm.sato@gmail.com> | 2021-01-27 05:01:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 21:01:10 +0100 |
commit | 43f4a23f89be19549f2e798c2eb0c59925861590 (patch) | |
tree | 2c8c38997479f55c84fc451bf65237ce4cbb515c /cli | |
parent | 40fc5f55ea582755d221a3445a2f5f388845bc23 (diff) |
fix(cli): fmt command help message (#9280)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/flags.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index 76ad50211..f7c83294c 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -793,7 +793,7 @@ fn fmt_subcommand<'a, 'b>() -> App<'a, 'b> { SubCommand::with_name("fmt") .about("Format source files") .long_about( - "Auto-format JavaScript/TypeScript source code. + "Auto-format JavaScript, TypeScript and Markdown files. deno fmt deno fmt myfile1.ts myfile2.ts deno fmt --check |