Skip to content

Commit fc2d30a

Browse files
authored
chore: fix minor typos in specs (#6204)
1 parent a0eb08b commit fc2d30a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fv/specs/AccessControlDefaultAdminRules.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ invariant defaultAdminRoleAdminConsistency()
7171
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
7272
*/
7373
// Writing this as an invariant would be flagged by Certora as trivial. Writing it as a rule is just as valid: we
74-
// verify the is true for any state of the storage
74+
// verify this is true for any state of the storage
7575
rule ownerConsistency() {
7676
assert defaultAdmin() == owner();
7777
}

fv/specs/ERC20Wrapper.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ invariant totalSupplyIsSmallerThanUnderlyingBalance()
6565
require sumOfUnderlyingBalancesLowerThanUnderlyingSupply(from, to);
6666
}
6767
preserved ERC20PermitHarness.burn(address from, uint256 amount) with (env e) {
68-
// If someone can burn from the wrapper, than the invariant obviously doesn't hold.
68+
// If someone can burn from the wrapper, then the invariant obviously doesn't hold.
6969
require from != currentContract;
7070
require sumOfUnderlyingBalancesLowerThanUnderlyingSupply(from, currentContract);
7171
}

0 commit comments

Comments
 (0)