diff options
| author | Austin Hellyer <[email protected]> | 2016-11-22 07:57:51 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-22 07:57:51 -0800 |
| commit | d4726f899cf6b86d805a8a2a77ec57782ec3bdd6 (patch) | |
| tree | 7966be3c6d6c4284bb618b88b3f146dd412af677 /src/model/gateway.rs | |
| parent | Don't typo CreateEmbed::image field (diff) | |
| download | serenity-d4726f899cf6b86d805a8a2a77ec57782ec3bdd6.tar.xz serenity-d4726f899cf6b86d805a8a2a77ec57782ec3bdd6.zip | |
Rename the State to Cache
Diffstat (limited to 'src/model/gateway.rs')
| -rw-r--r-- | src/model/gateway.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/gateway.rs b/src/model/gateway.rs index 5fdfdfe..113bb2f 100644 --- a/src/model/gateway.rs +++ b/src/model/gateway.rs @@ -239,7 +239,7 @@ pub struct ReactionRemoveAllEvent { pub message_id: MessageId, } -/// The "Ready" event, containing initial state +/// The "Ready" event, containing initial ready cache #[derive(Clone, Debug)] pub struct ReadyEvent { pub ready: Ready, @@ -440,7 +440,7 @@ pub enum Event { /// [`Reaction`]: struct.Reaction.html /// [`on_reaction_remove_all`]: ../client/struct.Clint.html#method.on_reaction_remove_all ReactionRemoveAll(ReactionRemoveAllEvent), - /// The first event in a connection, containing the initial state. + /// The first event in a connection, containing the initial ready cache. /// /// May also be received at a later time in the event of a reconnect. Ready(ReadyEvent), |