Skip to content

Commit

Permalink
chore: fix log string
Browse files Browse the repository at this point in the history
  • Loading branch information
totomanov committed Apr 20, 2024
1 parent 5dd1c68 commit a6e3183
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 a6e3183

Please sign in to comment.