Skip to content

Commit 8967ea3

Browse files
Ooqu4norhh
authored andcommitted
Fix some minor typos (#1003)
* Fix some minor typos * Revert wrong typo correction
1 parent 44ed641 commit 8967ea3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you have a small question or aren't sure if you should create an issue for yo
1010
# Coding
1111
If you want to help out with the development of Mythril then you can take a look at our issues or [Waffle board](https://waffle.io/ConsenSys/mythril).
1212

13-
Before you start working on an issue pkease stop by on Discord to message a collaborator, this way we can assign you to the issue making sure nobody does double work. We can also provide you with support through Discord if there are any questions during the development process.
13+
Before you start working on an issue please stop by on Discord to message a collaborator, this way we can assign you to the issue making sure nobody does double work. We can also provide you with support through Discord if there are any questions during the development process.
1414

1515
## New ideas
1616
Before you start working on a new idea, it's useful to create an issue on GitHub, that way we know what you want to implement and that you are working on it. Additionally, it might happen that your feature does not fit with our roadmap, in which case it would be unfortunate if you have already spent some time working on it.

mythril/interfaces/cli.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -507,24 +507,24 @@ def parse_args(parser: argparse.ArgumentParser, args: argparse.Namespace) -> Non
507507
quick_commands(args)
508508
config = set_config(args)
509509
leveldb_search(config, args)
510-
dissasembler = MythrilDisassembler(
510+
disassembler = MythrilDisassembler(
511511
eth=config.eth,
512512
solc_version=args.solv,
513513
solc_args=args.solc_args,
514514
enable_online_lookup=args.query_signature,
515515
)
516516
if args.truffle:
517517
try:
518-
dissasembler.analyze_truffle_project(args)
518+
disassembler.analyze_truffle_project(args)
519519
except FileNotFoundError:
520520
print(
521521
"Build directory not found. Make sure that you start the analysis from the project root, and that 'truffle compile' has executed successfully."
522522
)
523523
sys.exit()
524524

525-
address = get_code(dissasembler, args)
525+
address = get_code(disassembler, args)
526526
execute_command(
527-
disassembler=dissasembler, address=address, parser=parser, args=args
527+
disassembler=disassembler, address=address, parser=parser, args=args
528528
)
529529
except CriticalError as ce:
530530
exit_with_error(args.outform, str(ce))

0 commit comments

Comments
 (0)