Skip to content

Commit

Permalink
docs(cli): align merge-diffs description with compare
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Aug 19, 2024
1 parent 0a3594d commit 0d18aca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/cli-e2e/tests/__snapshots__/help.e2e.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Commands:
code-pushup compare Compare 2 report files and create a diff file
code-pushup print-config Print config
code-pushup merge-diffs Combine many report diffs into single report-diff.md
code-pushup merge-diffs Combine many report diffs into a single diff file
Global Options:
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/lib/merge-diffs/merge-diffs-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function yargsMergeDiffsCommandObject() {
const command = 'merge-diffs';
return {
command,
describe: 'Combine many report diffs into single report-diff.md',
describe: 'Combine many report diffs into a single diff file',
builder: yargsMergeDiffsOptionsDefinition(),
handler: async (args: unknown) => {
ui().logger.log(bold(CLI_NAME));
Expand Down

0 comments on commit 0d18aca

Please sign in to comment.