diff --git a/scripts/ci_test_data_dependency.sh b/scripts/ci_test_data_dependency.sh index d137f654b..421f44509 100755 --- a/scripts/ci_test_data_dependency.sh +++ b/scripts/ci_test_data_dependency.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -### Test data dependecy +### Test data dependency if ! python ./examples/scripts/data_dependency.py ./examples/scripts/data_dependency.sol; then echo "data dependency failed" diff --git a/slither/core/declarations/contract_level.py b/slither/core/declarations/contract_level.py index 9b81e6d33..3514437e9 100644 --- a/slither/core/declarations/contract_level.py +++ b/slither/core/declarations/contract_level.py @@ -16,7 +16,7 @@ class ContractLevel(SourceMapping): def __init__(self) -> None: super().__init__() # TODO remove all the setters for the child objects - # And make it a constructor arguement + # And make it a constructor argument # This will remove the optional self._contract: Optional["Contract"] = None diff --git a/slither/utils/command_line.py b/slither/utils/command_line.py index b8888cb85..bdd6539db 100644 --- a/slither/utils/command_line.py +++ b/slither/utils/command_line.py @@ -80,7 +80,7 @@ class FailOnLevel(enum.Enum): def read_config_file(args: argparse.Namespace) -> None: # No config file was provided as an argument if args.config_file is None: - # Check wether the default config file is present + # Check whether the default config file is present if os.path.exists("slither.config.json"): # The default file exists, use it args.config_file = "slither.config.json"