From 1b27c13096d6e4389d62e7b0766a1db53fbb3f1b Mon Sep 17 00:00:00 2001 From: Nicolas Mahe Date: Fri, 24 Sep 2021 20:27:53 +0700 Subject: [PATCH] Fix typo in doc of SignatureChecker (#2881) --- contracts/utils/cryptography/SignatureChecker.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils/cryptography/SignatureChecker.sol b/contracts/utils/cryptography/SignatureChecker.sol index 71e30eb5b54..e02eac15275 100644 --- a/contracts/utils/cryptography/SignatureChecker.sol +++ b/contracts/utils/cryptography/SignatureChecker.sol @@ -8,7 +8,7 @@ import "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper: Provide a single mechanism to verify both private-key (EOA) ECDSA signature and - * ERC1271 contract sigantures. Using this instead of ECDSA.recover in your contract will make them compatible with + * ERC1271 contract signatures. Using this instead of ECDSA.recover in your contract will make them compatible with * smart contract wallets such as Argent and Gnosis. * * Note: unlike ECDSA signatures, contract signature's are revocable, and the outcome of this function can thus change