From 3711590f897d160016bafea48a79a74ca96433c4 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Mon, 17 Jul 2023 21:25:54 +0200 Subject: [PATCH] Update MessageHashUtils.sol --- contracts/utils/cryptography/MessageHashUtils.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils/cryptography/MessageHashUtils.sol b/contracts/utils/cryptography/MessageHashUtils.sol index 05ce35af810..558e5e79337 100644 --- a/contracts/utils/cryptography/MessageHashUtils.sol +++ b/contracts/utils/cryptography/MessageHashUtils.sol @@ -21,7 +21,7 @@ library MessageHashUtils { * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `hash` parameter is intended to be the result of hashing a raw message with - * keccak256, althoguh any bytes32 value can be safely used because the final digest will + * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}.