Skip to content

Commit 9647ebd

Browse files
committed
Fix punctuation and grammar in help messages
1 parent 37c8573 commit 9647ebd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/bin.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ 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+
["jsr remove @std/log", 'Remove the "@std/log" package from the project.'],
3333
])
3434
}
3535
3636
Commands:
3737
${
3838
prettyPrintRow([
39-
["i, install, add", "Install one or more jsr packages"],
40-
["r, uninstall, remove", "Remove one or more jsr packages"],
39+
["i, install, add", "Install one or more jsr packages."],
40+
["r, uninstall, remove", "Remove one or more jsr packages."],
4141
["publish", "Publish a package to the JSR registry."],
4242
])
4343
}
@@ -66,7 +66,7 @@ ${
6666
prettyPrintRow([
6767
[
6868
"--token <Token>",
69-
"The API token to use when publishing. If unset, interactive authentication is be used.",
69+
"The API token to use when publishing. If unset, interactive authentication will be used.",
7070
],
7171
[
7272
"--dry-run",
@@ -79,7 +79,7 @@ ${
7979
Environment variables:
8080
${
8181
prettyPrintRow([
82-
["JSR_URL", "Use a different registry url for the publish command"],
82+
["JSR_URL", "Use a different registry url for the publish command."],
8383
])
8484
}
8585
`);

0 commit comments

Comments
 (0)