Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cli): Typos in cli output #2428

Merged
merged 3 commits into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions yarn-project/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command {
program
.command('send')
.description('Calls a function on an Aztec contract.')
.argument('<functionName>', 'Name of Function to view')
.argument('<functionName>', 'Name of function to execute')
.option('-a, --args [functionArgs...]', 'Function arguments', [])
.requiredOption(
'-c, --contract-abi <fileLocation>',
Expand Down Expand Up @@ -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('<functionName>', 'Name of Function to view')
.argument('<functionName>', 'Name of function to call')
.option('-a, --args [functionArgs...]', 'Function arguments', [])
.requiredOption(
'-c, --contract-abi <fileLocation>',
Expand Down