diff --git a/contracts/crypto-verify/src/ethereum.rs b/contracts/crypto-verify/src/ethereum.rs index f6958a023..3fedc2a99 100644 --- a/contracts/crypto-verify/src/ethereum.rs +++ b/contracts/crypto-verify/src/ethereum.rs @@ -63,7 +63,7 @@ fn serialize_unsigned_transaction( /// Get the recovery param from the value `v` when no chain ID for replay protection is used. /// -/// This is needed for chain-agnostig aignatures like signed text. +/// This is needed for chain-agnostic signatures like signed text. /// /// See [EIP-155] for how `v` is composed. /// @@ -78,7 +78,7 @@ pub fn get_recovery_param(v: u8) -> StdResult { /// Get the recovery param from the value `v` when a chain ID for replay protection is used. /// -/// This is needed for chain-agnostig aignatures like signed text. +/// This is needed for chain-agnostic signatures like signed text. /// /// See [EIP-155] for how `v` is composed. ///