Skip to content

Commit aaaa903

Browse files
authored
Merge pull request #144 from eltociear/patch-1
Fix typo in description for option flag `--with-trace` in `sevm` CLI
2 parents 2f2736e + 0ab83d5 commit aaaa903

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Options:
373373
le) [string] [default: "https://cloudflare-eth.com/"]
374374
--help Show help [boolean]
375375
--with-stack Include the current stack next to each decoded opcode
376-
--with-trace Include the trace of staments at the end of each basic block
376+
--with-trace Include the trace of statements at the end of each basic block
377377

378378
```
379379

bin/sevm.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void yargs(process.argv.slice(2))
256256
description: 'Include the current stack next to each decoded opcode',
257257
})
258258
.option('with-trace', {
259-
description: 'Include the trace of staments at the end of each basic block',
259+
description: 'Include the trace of statements at the end of each basic block',
260260
}), make(dis))
261261
.command('cfg <contract>', 'Writes the cfg of the selected function in `dot` format into standard output', pos, make(cfg))
262262
.command('sol <contract>', "Decompile the contract into Solidity-like source", decompileOpts, make((contract, argv) => {

0 commit comments

Comments
 (0)