Skip to content

Commit 93c106e

Browse files
authored
Merge pull request #559 from pullmerge/master
Fix some comments
2 parents 59b2b75 + 62354dd commit 93c106e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

crytic_compile/platform/solc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ def _run_solc(
468468
solc_disable_warnings (bool): If True, disable solc warnings
469469
solc_arguments (Optional[str]): Additional solc cli arguments
470470
solc_remaps (Optional[Union[str, List[str]]], optional): Solc remaps. Can be a string where remap are separated with space, or list of str, or a list of. Defaults to None.
471-
env (Optional[Dict]): Environement variable when solc is run. Defaults to None.
471+
env (Optional[Dict]): Environment variable when solc is run. Defaults to None.
472472
working_dir (Optional[Union[Path, str]]): Working directory when solc is run. Defaults to None.
473473
force_legacy_json (bool): Force to use the legacy json format. Defaults to False.
474474
@@ -607,7 +607,7 @@ def _run_solcs_path(
607607
solc_disable_warnings (bool): If True, disable solc warnings
608608
solc_arguments (str): Additional solc cli arguments
609609
solc_remaps (Optional[Union[str, List[str]]], optional): Solc remaps. Can be a string where remap are separated with space, or list of str, or a list of. Defaults to None.
610-
env (Optional[Dict]): Environement variable when solc is run. Defaults to None.
610+
env (Optional[Dict]): Environment variable when solc is run. Defaults to None.
611611
working_dir (Optional[Union[Path, str]], optional): Working directory when solc is run. Defaults to None.
612612
force_legacy_json (bool): Force to use the legacy json format. Defaults to False.
613613
@@ -697,7 +697,7 @@ def _run_solcs_env(
697697
solc_disable_warnings (bool): If True, disable solc warnings
698698
solc_arguments (str): Additional solc cli arguments
699699
solc_remaps (Optional[Union[str, List[str]]], optional): Solc remaps. Can be a string where remap are separated with space, or list of str, or a list of. Defaults to None.
700-
env (Optional[Dict], optional): Environement variable when solc is run. Defaults to None.
700+
env (Optional[Dict], optional): Environment variable when solc is run. Defaults to None.
701701
working_dir (Optional[Union[Path, str]], optional): Working directory when solc is run. Defaults to None.
702702
solcs_env (Optional[List[str]]): List of solc env variable to try. Defaults to None.
703703
force_legacy_json (bool): Force to use the legacy json format. Defaults to False.

crytic_compile/platform/waffle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def _load_config(config_file: str) -> Dict:
321321

322322

323323
def _get_version(compiler: str, cwd: str, config: Optional[Dict] = None) -> str:
324-
"""Return the solidity verison used
324+
"""Return the solidity version used
325325
326326
Args:
327327
compiler (str): compiler used

scripts/ci_test_truffle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ then
1414
echo "Truffle test failed"
1515
exit 255
1616
fi
17-
# TODO: for some reason truffle output is not deterministc
17+
# TODO: for some reason truffle output is not deterministic
1818
# The assigned id changes
1919
#cd -
2020
#

0 commit comments

Comments
 (0)