Skip to content

Commit 5abd425

Browse files
morinokamimarvinhagemeisterrojvv
authored
fix: inconsistency and grammar in help messages (#22)
* Fix punctuation and grammar in help messages * jsr -> JSR * deno fmt * chore: uppercase URL Co-authored-by: Roj [roːʒ] <[email protected]> --------- Co-authored-by: Marvin Hagemeister <[email protected]> Co-authored-by: Roj [roːʒ] <[email protected]>
1 parent 83cf2e2 commit 5abd425

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/bin.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,19 @@ function printHelp() {
2828
Usage:
2929
${
3030
prettyPrintRow([
31-
["jsr add @std/log", 'Install the "@std/log" package from jsr.io'],
32-
["jsr remove @std/log", 'Remove the "@std/log" package from the project'],
31+
["jsr add @std/log", 'Install the "@std/log" package from jsr.io.'],
32+
[
33+
"jsr remove @std/log",
34+
'Remove the "@std/log" package from the project.',
35+
],
3336
])
3437
}
3538
3639
Commands:
3740
${
3841
prettyPrintRow([
39-
["i, install, add", "Install one or more jsr packages"],
40-
["r, uninstall, remove", "Remove one or more jsr packages"],
42+
["i, install, add", "Install one or more JSR packages."],
43+
["r, uninstall, remove", "Remove one or more JSR packages."],
4144
["publish", "Publish a package to the JSR registry."],
4245
])
4346
}
@@ -66,7 +69,7 @@ ${
6669
prettyPrintRow([
6770
[
6871
"--token <Token>",
69-
"The API token to use when publishing. If unset, interactive authentication is be used.",
72+
"The API token to use when publishing. If unset, interactive authentication will be used.",
7073
],
7174
[
7275
"--dry-run",
@@ -79,7 +82,7 @@ ${
7982
Environment variables:
8083
${
8184
prettyPrintRow([
82-
["JSR_URL", "Use a different registry url for the publish command"],
85+
["JSR_URL", "Use a different registry URL for the publish command."],
8386
])
8487
}
8588
`);

0 commit comments

Comments
 (0)