From 7201e6707f6631d9499a569f492870ebdd4133cf Mon Sep 17 00:00:00 2001 From: GitHubPang <61439577+GitHubPang@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:06:44 +0800 Subject: [PATCH] Fix typo in a comment (#3747) --- test/utils/math/Math.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/math/Math.t.sol b/test/utils/math/Math.t.sol index fa682149f..c1c6f447d 100644 --- a/test/utils/math/Math.t.sol +++ b/test/utils/math/Math.t.sol @@ -154,7 +154,7 @@ contract MathTest is Test { // Full precision for q * d (uint256 qdHi, uint256 qdLo) = _mulHighLow(q, d); - // Add reminder of x * y / d (computed as rem = (x * y % d)) + // Add remainder of x * y / d (computed as rem = (x * y % d)) (uint256 qdRemLo, uint256 c) = _addCarry(qdLo, _mulmod(x, y, d)); uint256 qdRemHi = qdHi + c;