Skip to content

Commit

Permalink
docs: fix docs comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Jul 27, 2024
1 parent 03d37b8 commit 7829c58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ const pkg = JSON.parse(rawPkg);
program
.name(pkg.name)
.description(
"Interact with and upload screenshots to argos-ci.com via command line.",
"Interact with and upload screenshots to Argos via command line.",
)
.version(pkg.version);

program
.command("upload")
.argument("<directory>", "Directory to upload")
.description("Upload screenshots to argos-ci.com")
.description("Upload screenshots to Argos")
.option(
"-f, --files <patterns...>",
"One or more globs matching image file paths to upload",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async function uploadFilesToS3(
}

/**
* Upload screenshots to argos-ci.com.
* Upload screenshots to Argos.
*/
export async function upload(params: UploadParameters) {
debug("Starting upload with params", params);
Expand Down

0 comments on commit 7829c58

Please sign in to comment.