Skip to content

Commit a6e3183

Browse files
committed
chore: fix log string
1 parent 5dd1c68 commit a6e3183

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)