Skip to content

Commit

Permalink
docs: small renaming consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Apr 25, 2024
1 parent 4c202de commit 7ce469f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions certora/specs/LibSummary.spec
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ rule checkSummaryId(MorphoHarness.MarketParams marketParams) {
}

rule checkSummaryMin(uint256 x, uint256 y) {
uint256 summaryMin = x < y ? x : y;
assert libMin(x, y) == summaryMin;
uint256 refMin = x < y ? x : y;
assert libMin(x, y) == refMin;
}

0 comments on commit 7ce469f

Please sign in to comment.