소스 검색

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