diff options
| author | Zeyla Hellyer <[email protected]> | 2018-07-15 23:32:50 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2018-07-15 23:33:59 -0700 |
| commit | 9da766976929417c4b8f487f8ec05b6f8b3f43ef (patch) | |
| tree | 83cfae143ad7c1c4423d5ac35bf71d6e0bc6b882 /src/model/webhook.rs | |
| parent | Support multiple prefixes for command-groups (#343) (diff) | |
| download | serenity-9da766976929417c4b8f487f8ec05b6f8b3f43ef.tar.xz serenity-9da766976929417c4b8f487f8ec05b6f8b3f43ef.zip | |
Fix some clippy lints
Some lints were not resolved due to causing API changes. Most lints in the
framework were left unfixed.
Diffstat (limited to 'src/model/webhook.rs')
| -rw-r--r-- | src/model/webhook.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/webhook.rs b/src/model/webhook.rs index 65dae34..68d6012 100644 --- a/src/model/webhook.rs +++ b/src/model/webhook.rs @@ -226,5 +226,5 @@ impl WebhookId { /// /// [Manage Webhooks]: permissions/constant.MANAGE_WEBHOOKS.html #[inline] - pub fn get(&self) -> Result<Webhook> { http::get_webhook(self.0) } + pub fn get(self) -> Result<Webhook> { http::get_webhook(self.0) } } |