From 05d4bf57ffed8c65256ff4ede5c3cf7a0b738e7d Mon Sep 17 00:00:00 2001 From: Dimitrios Papathanasiou <116485010+dimitriospapathanasiou@users.noreply.github.com> Date: Mon, 13 May 2024 18:33:47 +0300 Subject: [PATCH] Fix Typo in Math.sol (#5033) --- 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 0a431719dd1..5bf5bddbb09 100644 --- a/contracts/utils/math/Math.sol +++ b/contracts/utils/math/Math.sol @@ -311,7 +311,7 @@ library Math { /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). - * It includes a success flag indicating if the operation succeeded. Operation will be marked has failed if trying + * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain