Skip to content

Commit b3cf9a2

Browse files
authored
update collective events docs to be consistent with changes (#6463)
1 parent 88459d7 commit b3cf9a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ decl_event! {
165165
Approved(Hash),
166166
/// A motion was not approved by the required threshold.
167167
Disapproved(Hash),
168-
/// A motion was executed; `bool` is true if returned without error.
168+
/// A motion was executed; result will be `Ok` if it returned without error.
169169
Executed(Hash, DispatchResult),
170-
/// A single member did some action; `bool` is true if returned without error.
170+
/// A single member did some action; result will be `Ok` if it returned without error.
171171
MemberExecuted(Hash, DispatchResult),
172-
/// A proposal was closed after its duration was up.
172+
/// A proposal was closed because its threshold was reached or after its duration was up.
173173
Closed(Hash, MemberCount, MemberCount),
174174
}
175175
}
@@ -188,7 +188,7 @@ decl_error! {
188188
DuplicateVote,
189189
/// Members are already initialized!
190190
AlreadyInitialized,
191-
/// The close call is made too early, before the end of the voting.
191+
/// The close call was made too early, before the end of the voting.
192192
TooEarly,
193193
/// There can only be a maximum of `MaxProposals` active proposals.
194194
TooManyProposals,

0 commit comments

Comments
 (0)