Skip to content

Commit

Permalink
Add comma
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurdm committed Sep 6, 2024
1 parent c37bf4c commit d49feb7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/src/command/bump.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BumpSubcommand extends PubCommand {
'dry-run',
abbr: 'n',
negatable: false,
help: "Report what would change but don't change anything.",
help: "Report what would change, but don't change anything.",
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Increment to the next breaking version (eg. 0.1.2 -> 0.2.0)

Usage: pub bump breaking <subcommand> [arguments...]
-h, --help Print this usage information.
-n, --dry-run Report what would change but don't change anything.
-n, --dry-run Report what would change, but don't change anything.

Run "pub help" to see global options.

2 changes: 1 addition & 1 deletion test/testdata/goldens/help_test/pub bump major --help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Increment the major version number (eg. 3.1.2 -> 4.0.0)

Usage: pub bump major <subcommand> [arguments...]
-h, --help Print this usage information.
-n, --dry-run Report what would change but don't change anything.
-n, --dry-run Report what would change, but don't change anything.

Run "pub help" to see global options.

2 changes: 1 addition & 1 deletion test/testdata/goldens/help_test/pub bump minor --help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Increment the minor version number (eg. 3.1.2 -> 3.2.0)

Usage: pub bump minor <subcommand> [arguments...]
-h, --help Print this usage information.
-n, --dry-run Report what would change but don't change anything.
-n, --dry-run Report what would change, but don't change anything.

Run "pub help" to see global options.

2 changes: 1 addition & 1 deletion test/testdata/goldens/help_test/pub bump patch --help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Increment the patch version number (eg. 3.1.2 -> 3.1.3)

Usage: pub bump patch <subcommand> [arguments...]
-h, --help Print this usage information.
-n, --dry-run Report what would change but don't change anything.
-n, --dry-run Report what would change, but don't change anything.

Run "pub help" to see global options.

0 comments on commit d49feb7

Please sign in to comment.