diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/rest/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/rest/mod.rs b/src/client/rest/mod.rs index 9cd57fa..1e032fd 100644 --- a/src/client/rest/mod.rs +++ b/src/client/rest/mod.rs @@ -525,6 +525,7 @@ pub fn delete_webhook(webhook_id: u64) -> Result<()> { /// let token = "ig5AO-wdVWpCBtUUMxmgsWryqgsW3DChbKYOINftJ4DCrUbnkedoYZD0VOH1QLr-S3sV"; /// /// rest::delete_webhook_with_token(id, token).expect("Error deleting webhook"); +/// ``` /// /// [`Webhook`]: ../../model/struct.Webhook.html pub fn delete_webhook_with_token(webhook_id: u64, token: &str) -> Result<()> { |