From 7de9aab5b29709decba7c8bba984d92669868a50 Mon Sep 17 00:00:00 2001 From: Pierre Grimaud Date: Sun, 25 Dec 2022 23:37:33 +0100 Subject: [PATCH] docs: fix typos --- .github/workflows/test.yaml | 2 +- contracts/BaseFeeOracle.sol | 2 +- tests/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 761d7bf4..e9696987 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -90,7 +90,7 @@ jobs: - name: Compile Code run: brownie compile --size - - name: Run Splitted Tests + - name: Run Split Tests if: steps.check_test_durations.outputs.files_exists == 'true' run: brownie test tests/functional --gas --coverage --splits 6 --group ${{ matrix.group }}; diff --git a/contracts/BaseFeeOracle.sol b/contracts/BaseFeeOracle.sol index 86b65d09..5c86dca7 100644 --- a/contracts/BaseFeeOracle.sol +++ b/contracts/BaseFeeOracle.sol @@ -7,7 +7,7 @@ interface IBaseFee { /** * @dev Interprets the base fee from our base fee provider - * contract to determine if a harvest is permissable. + * contract to determine if a harvest is permissible. * * Version 0.1.0 */ diff --git a/tests/conftest.py b/tests/conftest.py index 8c6cf5cf..2a2160d8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,7 +21,7 @@ def arg_types(args): args = args[0]["components"] # NOTE: Need to filter out `name` and `internalType`, - # it isn't useful and hurts our comparisions + # it isn't useful and hurts our comparisons return [ {k: v for k, v in arg.items() if k not in ("internalType", "name")} for arg in args