diff options
| author | Perry Fraser <[email protected]> | 2018-10-01 16:38:07 -0400 |
|---|---|---|
| committer | zeyla <[email protected]> | 2018-10-01 13:38:07 -0700 |
| commit | 9865d9ccd727a7f6c5c9a6094b87af0f6353831b (patch) | |
| tree | b9d13d1ff517347da19d198b257481fffbbb68db /src/client/dispatch.rs | |
| parent | Change DOS line endings to UNIX line endings (diff) | |
| download | serenity-9865d9ccd727a7f6c5c9a6094b87af0f6353831b.tar.xz serenity-9865d9ccd727a7f6c5c9a6094b87af0f6353831b.zip | |
A bunch of typo fixes (#404)
Diffstat (limited to 'src/client/dispatch.rs')
| -rw-r--r-- | src/client/dispatch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/dispatch.rs b/src/client/dispatch.rs index 3e3bcfa..5f88c34 100644 --- a/src/client/dispatch.rs +++ b/src/client/dispatch.rs @@ -167,7 +167,7 @@ fn handle_event<H: EventHandler + Send + Sync + 'static>( let context = context(data, runner_tx, shard_id); // Discord sends both a MessageCreate and a ChannelCreate upon a new message in a private channel. - // This could potentionally be annoying to handle when otherwise wanting to normally take care of a new channel. + // This could potentially be annoying to handle when otherwise wanting to normally take care of a new channel. // So therefore, private channels are dispatched to their own handler code. match event.channel { Channel::Private(channel) => { |