From a87d6f054587d4195045a221d41179874ecf991b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20de=20Metz?= Date: Wed, 18 May 2016 15:14:50 +0200 Subject: [PATCH] Fix typo. (#1220) --- plugins/inputs/github_webhooks/github_webhooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inputs/github_webhooks/github_webhooks.go b/plugins/inputs/github_webhooks/github_webhooks.go index 726eef037..e0d06230c 100644 --- a/plugins/inputs/github_webhooks/github_webhooks.go +++ b/plugins/inputs/github_webhooks/github_webhooks.go @@ -334,5 +334,5 @@ func NewEvent(r []byte, t string) (Event, error) { case "watch": return newWatch(r) } - return nil, &newEventError{"Not a recgonized event type"} + return nil, &newEventError{"Not a recognized event type"} }