diff --git a/src/error.rs b/src/error.rs index 5dd173d..161cde3 100644 --- a/src/error.rs +++ b/src/error.rs @@ -32,11 +32,11 @@ pub enum Error { MissingShares, /// Could not retrieve the participant's encrypted shares NoEncryptedShares, - /// At least one complaint has been issued during to_round_two() execution + /// At least one complaint has been issued during `to_round_two()`` execution Complaint(Vec>), /// Not all participants have been included InvalidNumberOfParticipants(usize, u32), - /// The provided slices for the MSM don't match in lenth + /// The provided slices for the MSM don't match in length InvalidMSMParameters, /// Too many invalid participants, with their indices TooManyInvalidParticipants(Vec), @@ -48,7 +48,7 @@ pub enum Error { InvalidChallenge, /// Invalid signature InvalidSignature, - /// Misbehaving Participants + /// Misbehaving participants MisbehavingParticipants(Vec), /// Custom error Custom(String),