Skip to content

Commit

Permalink
patch(cli): fix typo (near#282)
Browse files Browse the repository at this point in the history
Validating was misspelled
  • Loading branch information
waynenilsen committed Nov 10, 2022
1 parent d2b1d92 commit d106e7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cli/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function buildCom(
signale.await(`Creating ${TARGET_DIR} directory...`);
await executeCommand(`mkdir -p ${TARGET_DIR}`, verbose);

signal.await(`Validatig ${source} contract...`);
signal.await(`Validating ${source} contract...`);
if (!await validateContract(source, verbose)) {
process.exit(1);
}
Expand Down

0 comments on commit d106e7e

Please sign in to comment.