浏览代码

Fix typo in MessageHashUtils.sol (#4462)

Hadrien Croubois 2 年之前
父节点
当前提交
21bb89ef5b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contracts/utils/cryptography/MessageHashUtils.sol

+ 1 - 1
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}.