Skip to content

Commit 9e73c4b

Browse files
Typographic error in Math.sol comment fix (#5115)
1 parent e30b390 commit 9e73c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/utils/math/Math.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ library Math {
144144
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
145145
unchecked {
146146
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
147-
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
147+
// the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
148148
// variables such that product = prod1 * 2²⁵⁶ + prod0.
149149
uint256 prod0 = x * y; // Least significant 256 bits of the product
150150
uint256 prod1; // Most significant 256 bits of the product

0 commit comments

Comments
 (0)