Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare committed Oct 7, 2023
1 parent f34f223 commit a47875b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ pub enum Error<C: CipherSuite> {
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<Complaint<C>>),
/// 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<u32>),
Expand All @@ -48,7 +48,7 @@ pub enum Error<C: CipherSuite> {
InvalidChallenge,
/// Invalid signature
InvalidSignature,
/// Misbehaving Participants
/// Misbehaving participants
MisbehavingParticipants(Vec<u32>),
/// Custom error
Custom(String),
Expand Down

0 comments on commit a47875b

Please sign in to comment.