Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comments #2678

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/ci_test_data_dependency.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion slither/core/declarations/contract_level.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion slither/utils/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down