Skip to content

Commit f52f92f

Browse files
authored
Merge pull request #544 from totomanov/chore/fix-log
chore: fix bound log
2 parents 5dd1c68 + a6e3183 commit f52f92f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StdUtils.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ abstract contract StdUtils {
5959

6060
function bound(uint256 x, uint256 min, uint256 max) internal pure virtual returns (uint256 result) {
6161
result = _bound(x, min, max);
62-
console2_log_StdUtils("Bound Result", result);
62+
console2_log_StdUtils("Bound result", result);
6363
}
6464

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

0 commit comments

Comments
 (0)