From 3a3c87b1a676f277c17a4601de56ddfc432d427d Mon Sep 17 00:00:00 2001 From: Saint Rat Wrongtail <36714477+saint-rat@users.noreply.github.com> Date: Wed, 4 Jan 2023 00:52:53 +1000 Subject: [PATCH] Fix docs for Math.log256 (#3916) --- contracts/utils/math/Math.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils/math/Math.sol b/contracts/utils/math/Math.sol index f3a83b0ff..8400d0669 100644 --- a/contracts/utils/math/Math.sol +++ b/contracts/utils/math/Math.sol @@ -324,7 +324,7 @@ library Math { } /** - * @dev Return the log in base 10, following the selected rounding direction, of a positive value. + * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {