From 08acf9090f039112fcf1c9ee0b3c4fb6f4025aba Mon Sep 17 00:00:00 2001 From: PhilWindle <60546371+PhilWindle@users.noreply.github.com> Date: Thu, 28 Sep 2023 14:36:29 +0100 Subject: [PATCH] fix(cli): Typos in cli output (#2428) This PR corrects some types in the cli output. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- yarn-project/cli/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/cli/src/index.ts b/yarn-project/cli/src/index.ts index b7faa6207c9c..55dd7417706d 100644 --- a/yarn-project/cli/src/index.ts +++ b/yarn-project/cli/src/index.ts @@ -378,7 +378,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command { program .command('send') .description('Calls a function on an Aztec contract.') - .argument('', 'Name of Function to view') + .argument('', 'Name of function to execute') .option('-a, --args [functionArgs...]', 'Function arguments', []) .requiredOption( '-c, --contract-abi ', @@ -416,7 +416,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command { .description( 'Simulates the execution of a view (read-only) function on a deployed contract, without modifying state.', ) - .argument('', 'Name of Function to view') + .argument('', 'Name of function to call') .option('-a, --args [functionArgs...]', 'Function arguments', []) .requiredOption( '-c, --contract-abi ',