diff options
author | McSneaky <kevin@synter.ee> | 2024-10-30 17:32:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 16:32:04 +0100 |
commit | 1431ffa9f8142e4f76f565c51301f4fb174e449a (patch) | |
tree | d1008e66f80bd2766468d480b65e4cd76fda6f61 /tests/integration | |
parent | a1473d82c5612676c50af00ded0467dbb29bc0a8 (diff) |
docs(console): Update docstrings for install and uninstall (#26623)
When running `deno -h` then `install` and `uninstall` scripts had
description since deno 1 times :)
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/flags_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/flags_tests.rs b/tests/integration/flags_tests.rs index 455507b9f..663da363d 100644 --- a/tests/integration/flags_tests.rs +++ b/tests/integration/flags_tests.rs @@ -18,8 +18,8 @@ fn help_output() { "Start an interactive Read-Eval-Print Loop (REPL) for Deno", "Evaluate a script from the command line", "Add dependencies", - "Install script as an executable", - "Uninstall a script previously installed with deno install", + "Installs dependencies either in the local project or globally to a bin directory", + "Uninstalls a dependency or an executable script in the installation root's bin directory", "Run benchmarks", "Type-check the dependencies", "Compile the script into a self contained executable", |