mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(cli): Fix typo in doc subcommand help output (#26321)
This commit is contained in:
parent
e515ed23e8
commit
3f3568bd95
2 changed files with 2 additions and 2 deletions
|
@ -1232,7 +1232,7 @@ static DENO_HELP: &str = cstr!(
|
|||
<g>compile</> Compile the script into a self contained executable
|
||||
<p(245)>deno compile main.ts | deno compile --target=x86_64-unknown-linux-gnu</>
|
||||
<g>coverage</> Print coverage reports
|
||||
<g>doc</> Genereate and show documentation for a module or built-ins
|
||||
<g>doc</> Generate and show documentation for a module or built-ins
|
||||
<p(245)>deno doc | deno doc --json | deno doc --html mod.ts</>
|
||||
<g>fmt</> Format source files
|
||||
<p(245)>deno fmt | deno fmt main.ts</>
|
||||
|
|
|
@ -24,7 +24,7 @@ fn help_output() {
|
|||
"Type-check the dependencies",
|
||||
"Compile the script into a self contained executable",
|
||||
"Print coverage reports",
|
||||
"Genereate and show documentation for a module or built-ins",
|
||||
"Generate and show documentation for a module or built-ins",
|
||||
"Format source files",
|
||||
"Show info about cache or info related to source file",
|
||||
"Deno kernel for Jupyter notebooks",
|
||||
|
|
Loading…
Reference in a new issue