diff --git a/frost-core/src/keys/repairable.rs b/frost-core/src/keys/repairable.rs index df0be45c..24cd32b6 100644 --- a/frost-core/src/keys/repairable.rs +++ b/frost-core/src/keys/repairable.rs @@ -2,7 +2,7 @@ //! //! Implements the Repairable Threshold Scheme (RTS) from . //! The RTS is used to help a signer (participant) repair their lost share. This is achieved -//! using a subset of the other signers know here as `helpers`. +//! using a subset of the other signers known here as `helpers`. use alloc::collections::{BTreeMap, BTreeSet}; diff --git a/frost-core/src/lib.rs b/frost-core/src/lib.rs index 76078d90..a290984e 100644 --- a/frost-core/src/lib.rs +++ b/frost-core/src/lib.rs @@ -682,7 +682,7 @@ fn detect_cheater( /// for which the signature share was produced and with the group's /// `verifying_key`. /// -/// This is not required for regular FROST usage but might useful in certain +/// This is not required for regular FROST usage but might be useful in certain /// situations where it is desired to verify each individual signature share /// before aggregating the signature. pub fn verify_signature_share( diff --git a/frost-core/src/tests/refresh.rs b/frost-core/src/tests/refresh.rs index 384924e5..0d7d617b 100644 --- a/frost-core/src/tests/refresh.rs +++ b/frost-core/src/tests/refresh.rs @@ -18,7 +18,7 @@ use alloc::vec::Vec; use super::ciphersuite_generic::check_sign; -/// We want to test that recover share matches the original share +/// We want to test that recovered share matches the original share pub fn check_refresh_shares_with_dealer(mut rng: R) { // Compute shares diff --git a/frost-core/src/tests/repairable.rs b/frost-core/src/tests/repairable.rs index 532e1e06..a922e320 100644 --- a/frost-core/src/tests/repairable.rs +++ b/frost-core/src/tests/repairable.rs @@ -16,7 +16,7 @@ use crate::{ Ciphersuite, Error, Field, Group, Identifier, Scalar, }; -/// We want to test that recover share matches the original share +/// We want to test that recovered share matches the original share pub fn check_rts(mut rng: R) { // Compute shares