From d0b40d50b502935c7fdcdc1ba5088c75376a0392 Mon Sep 17 00:00:00 2001 From: Tronica Date: Mon, 17 Feb 2025 20:11:15 +0100 Subject: [PATCH] fix typos mod.rs --- version-meld/enr/src/keys/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version-meld/enr/src/keys/mod.rs b/version-meld/enr/src/keys/mod.rs index f54a77e..309a8b4 100644 --- a/version-meld/enr/src/keys/mod.rs +++ b/version-meld/enr/src/keys/mod.rs @@ -42,9 +42,9 @@ pub trait EnrKey: Send + Sync + Unpin + 'static { /// Returns the public key associated with current key pair. fn public(&self) -> Self::PublicKey; - /// Provides a method to decode a raw public key from an ENR `BTreeMap` to a useable public key. + /// Provides a method to decode a raw public key from an ENR `BTreeMap` to a usable public key. /// - /// This method allows a key type to decode the raw bytes in an ENR to a useable + /// This method allows a key type to decode the raw bytes in an ENR to a usable /// `EnrPublicKey`. It takes the ENR's `BTreeMap` and returns a public key. /// /// Note: This specifies the supported key schemes for an ENR.