diff --git a/contracts/BaseStrategy.sol b/contracts/BaseStrategy.sol index 45ea7ae0..f6b87cdb 100644 --- a/contracts/BaseStrategy.sol +++ b/contracts/BaseStrategy.sol @@ -691,7 +691,7 @@ abstract contract BaseStrategy { */ function tendTrigger(uint256 callCostInWei) public view virtual returns (bool) { // We usually don't need tend, but if there are positions that need - // active maintainence, overriding this function is how you would + // active maintenance, overriding this function is how you would // signal for that. // If your implementation uses the cost of the call in want, you can // use uint256 callCost = ethToWant(callCostInWei); 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