aboutsummaryrefslogtreecommitdiff
path: root/src/client/event_handler.rs
diff options
context:
space:
mode:
authorPerry Fraser <[email protected]>2018-10-01 16:38:07 -0400
committerzeyla <[email protected]>2018-10-01 13:38:07 -0700
commit9865d9ccd727a7f6c5c9a6094b87af0f6353831b (patch)
treeb9d13d1ff517347da19d198b257481fffbbb68db /src/client/event_handler.rs
parentChange DOS line endings to UNIX line endings (diff)
downloadserenity-9865d9ccd727a7f6c5c9a6094b87af0f6353831b.tar.xz
serenity-9865d9ccd727a7f6c5c9a6094b87af0f6353831b.zip
A bunch of typo fixes (#404)
Diffstat (limited to 'src/client/event_handler.rs')
-rw-r--r--src/client/event_handler.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/event_handler.rs b/src/client/event_handler.rs
index 32fdaa1..426cdda 100644
--- a/src/client/event_handler.rs
+++ b/src/client/event_handler.rs
@@ -217,12 +217,12 @@ pub trait EventHandler {
/// Provides the reaction's data.
fn reaction_add(&self, _ctx: Context, _add_reaction: Reaction) {}
- /// Dispatched when a reaction is dettached from a message.
+ /// Dispatched when a reaction is detached from a message.
///
/// Provides the reaction's data.
fn reaction_remove(&self, _ctx: Context, _removed_reaction: Reaction) {}
- /// Dispatched when all reactions of a message are dettached from a message.
+ /// Dispatched when all reactions of a message are detached from a message.
///
/// Provides the channel's id and the message's id.
fn reaction_remove_all(&self, _ctx: Context, _channel_id: ChannelId, _removed_from_message_id: MessageId) {}