From ef255e27232440bc82e51da5d385441b1c2857a4 Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Wed, 9 Aug 2023 11:03:31 -0400 Subject: [PATCH] fix: minor spelling changes --- webhooks.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webhooks.go b/webhooks.go index 937588e..2839a11 100644 --- a/webhooks.go +++ b/webhooks.go @@ -18,7 +18,7 @@ type WebhookHTTPAuth struct { // WebhookTriggerEnabled holds configuration for webhooks which can only be // enabled or disabled. type WebhookTriggerEnabled struct { - // Specifies whether or not this webhook is enabled. + // Specifies whether this webhook is enabled. Enabled bool `json:"Enabled"` } @@ -26,7 +26,7 @@ type WebhookTriggerEnabled struct { // enabled/disabled and optionally include message contents. type WebhookTriggerIncContent struct { WebhookTriggerEnabled - // Specifies whether or not the full content of the email is included in webhook POST. + // Specifies whether the full content of the email is included in webhook POST. IncludeContent bool `json:"IncludeContent"` }