Skip to content

Commit

Permalink
Merge pull request #544 from totomanov/chore/fix-log
Browse files Browse the repository at this point in the history
chore: fix bound log
  • Loading branch information
mattsse authored Apr 23, 2024
2 parents 5dd1c68 + a6e3183 commit f52f92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StdUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ abstract contract StdUtils {

function bound(uint256 x, uint256 min, uint256 max) internal pure virtual returns (uint256 result) {
result = _bound(x, min, max);
console2_log_StdUtils("Bound Result", result);
console2_log_StdUtils("Bound result", result);
}

function _bound(int256 x, int256 min, int256 max) internal pure virtual returns (int256 result) {
Expand Down

0 comments on commit f52f92f

Please sign in to comment.