Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
update collective events docs to be consistent with changes (#6463)
Browse files Browse the repository at this point in the history
  • Loading branch information
apopiak authored Jun 22, 2020
1 parent 3bf25c2 commit 8329dbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frame/collective/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ decl_event! {
Approved(Hash),
/// A motion was not approved by the required threshold.
Disapproved(Hash),
/// A motion was executed; `bool` is true if returned without error.
/// A motion was executed; result will be `Ok` if it returned without error.
Executed(Hash, DispatchResult),
/// A single member did some action; `bool` is true if returned without error.
/// A single member did some action; result will be `Ok` if it returned without error.
MemberExecuted(Hash, DispatchResult),
/// A proposal was closed after its duration was up.
/// A proposal was closed because its threshold was reached or after its duration was up.
Closed(Hash, MemberCount, MemberCount),
}
}
Expand All @@ -188,7 +188,7 @@ decl_error! {
DuplicateVote,
/// Members are already initialized!
AlreadyInitialized,
/// The close call is made too early, before the end of the voting.
/// The close call was made too early, before the end of the voting.
TooEarly,
/// There can only be a maximum of `MaxProposals` active proposals.
TooManyProposals,
Expand Down

0 comments on commit 8329dbd

Please sign in to comment.