diff --git a/yarn-project/cli/src/index.ts b/yarn-project/cli/src/index.ts index b7faa6207c9..55dd7417706 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 ',