Skip to content

Commit c2ae6af

Browse files
Fibonacci747Amxx
andauthored
chore: fix typos (#6149)
Co-authored-by: Hadrien Croubois <[email protected]>
1 parent 6969f42 commit c2ae6af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fv/specs/Initializable.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ rule reinitializeEffects() {
156156
reinitialize@withrevert(n);
157157
bool success = !lastReverted;
158158

159-
assert success <=> versionBefore < n, "can only reinitialize to a latter versions";
159+
assert success <=> versionBefore < n, "can only reinitialize to later versions";
160160
assert success => version() == n, "reinitialize must set version() to n";
161161
}
162162

fv/specs/TimelockController.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function helperScheduleWithRevert(env e, method f, bytes32 id, uint256 delay) re
3737
schedule@withrevert(e, target, value, data, predecessor, salt, delay);
3838
} else if (f.selector == sig:scheduleBatch(address[], uint256[], bytes[], bytes32, bytes32, uint256).selector) {
3939

40-
// NOTE: while the "single" correlation requirement works, the prover is not able to deal with the the "batch"
40+
// NOTE: while the "single" correlation requirement works, the prover is not able to deal with the "batch"
4141
// correlation requirement. This requirement is necessary to ensure that the call arguments correspond to the
4242
// operation ID that we are observing. This failure, from the prover, to "identify" a set of arguments that
4343
// correspond to the operation ID causes vacuity.
@@ -62,7 +62,7 @@ function helperExecuteWithRevert(env e, method f, bytes32 id, bytes32 predecesso
6262
execute@withrevert(e, target, value, data, predecessor, salt);
6363
} else if (f.selector == sig:executeBatch(address[], uint256[], bytes[], bytes32, bytes32).selector) {
6464

65-
// NOTE: while the "single" correlation requirement works, the prover is not able to deal with the the "batch"
65+
// NOTE: while the "single" correlation requirement works, the prover is not able to deal with the "batch"
6666
// correlation requirement. This requirement is necessary to ensure that the call arguments correspond to the
6767
// operation ID that we are observing. This failure, from the prover, to "identify" a set of arguments that
6868
// correspond to the operation ID causes vacuity.

0 commit comments

Comments
 (0)