File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- # ## Test data dependecy
3
+ # ## Test data dependency
4
4
5
5
if ! python ./examples/scripts/data_dependency.py ./examples/scripts/data_dependency.sol; then
6
6
echo " data dependency failed"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class ContractLevel(SourceMapping):
16
16
def __init__ (self ) -> None :
17
17
super ().__init__ ()
18
18
# TODO remove all the setters for the child objects
19
- # And make it a constructor arguement
19
+ # And make it a constructor argument
20
20
# This will remove the optional
21
21
self ._contract : Optional ["Contract" ] = None
22
22
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class FailOnLevel(enum.Enum):
80
80
def read_config_file (args : argparse .Namespace ) -> None :
81
81
# No config file was provided as an argument
82
82
if args .config_file is None :
83
- # Check wether the default config file is present
83
+ # Check whether the default config file is present
84
84
if os .path .exists ("slither.config.json" ):
85
85
# The default file exists, use it
86
86
args .config_file = "slither.config.json"
You can’t perform that action at this time.
0 commit comments