diff options
| author | acdenisSK <[email protected]> | 2018-07-25 12:04:18 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2018-07-25 12:04:18 +0200 |
| commit | 7a935574ffe0b7d19c1ed5c5befe1b7e7e4f0e0d (patch) | |
| tree | fd0fb456c4974b39ef1d5ee9a86ffe51decd71a3 /src | |
| parent | Release v0.5.5 (diff) | |
| download | serenity-7a935574ffe0b7d19c1ed5c5befe1b7e7e4f0e0d.tar.xz serenity-7a935574ffe0b7d19c1ed5c5befe1b7e7e4f0e0d.zip | |
Fix `ChannelId::send_message`'s dead links
Diffstat (limited to 'src')
| -rw-r--r-- | src/model/channel/channel_id.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/channel/channel_id.rs b/src/model/channel/channel_id.rs index 48003ef..ceb05c3 100644 --- a/src/model/channel/channel_id.rs +++ b/src/model/channel/channel_id.rs @@ -557,9 +557,9 @@ impl ChannelId { /// over the limit. /// /// [`Channel`]: enum.Channel.html - /// [`ModelError::MessageTooLong`]: enum.ModelError.html#variant.MessageTooLong - /// [`CreateMessage`]: ../builder/struct.CreateMessage.html - /// [Send Messages]: permissions/constant.SEND_MESSAGES.html + /// [`ModelError::MessageTooLong`]: ../error/enum.Error.html#variant.MessageTooLong + /// [`CreateMessage`]: ../../builder/struct.CreateMessage.html + /// [Send Messages]: ../permissions/struct.Permissions.html#associatedconstant.SEND_MESSAGES #[cfg(feature = "utils")] pub fn send_message<F>(&self, f: F) -> Result<Message> where F: FnOnce(CreateMessage) -> CreateMessage { |