diff options
| author | Erk- <[email protected]> | 2018-08-09 20:34:33 +0200 |
|---|---|---|
| committer | zeyla <[email protected]> | 2018-08-09 11:34:33 -0700 |
| commit | 40053a71931bb63c43eb6f469ee3c94383c9e90a (patch) | |
| tree | 79c2fabc1229d0543205bc6daf8ebebc6ebc9755 /src/model/event.rs | |
| parent | [routing] Fix various incorrect routes. (#364) (diff) | |
| download | serenity-40053a71931bb63c43eb6f469ee3c94383c9e90a.tar.xz serenity-40053a71931bb63c43eb6f469ee3c94383c9e90a.zip | |
Fix all the dead links in the docs
Diffstat (limited to 'src/model/event.rs')
| -rw-r--r-- | src/model/event.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/model/event.rs b/src/model/event.rs index 00705bb..191c98f 100644 --- a/src/model/event.rs +++ b/src/model/event.rs @@ -34,7 +34,7 @@ use std::mem; /// [`Channel`]: ../channel/enum.Channel.html /// [`Group`]: ../channel/struct.Group.html /// [`Guild`]: ../guild/struct.Guild.html -/// [`PrivateChannel`]: ../struct.PrivateChannel.html +/// [`PrivateChannel`]: ../channel/struct.PrivateChannel.html #[derive(Clone, Debug)] pub struct ChannelCreateEvent { /// The channel that was created. @@ -1342,16 +1342,14 @@ pub enum Event { /// Fires the [`Client::channel_delete`] event. /// /// [`Channel`]: ../channel/enum.Channel.html - /// [`Client::channel_delete`]: - /// ../../client/struct.Client.html#channel_delete + /// [`Client::channel_delete`]: ../../client/struct.Client.html#channel_delete ChannelDelete(ChannelDeleteEvent), /// The pins for a [`Channel`] have been updated. /// /// Fires the [`Client::channel_pins_update`] event. /// /// [`Channel`]: ../channel/enum.Channel.html - /// [`Client::channel_pins_update`]: - /// ../../client/struct.Client.html#channel_pins_update + /// [`Client::channel_pins_update`]: ../../client/struct.Client.html#channel_pins_update ChannelPinsUpdate(ChannelPinsUpdateEvent), /// A [`User`] has been added to a [`Group`]. /// @@ -1414,8 +1412,7 @@ pub enum Event { /// /// Fires the [`reaction_remove`] event handler. /// - /// [`reaction_remove`]: - /// ../../prelude/trait.EventHandler.html#method.reaction_remove + /// [`reaction_remove`]: ../../prelude/trait.EventHandler.html#method.reaction_remove ReactionRemove(ReactionRemoveEvent), /// A request was issued to remove all [`Reaction`]s from a [`Message`]. /// |