From 93c4be3a5381d47158f5577b9c4c8404f6e9b57e Mon Sep 17 00:00:00 2001 From: Luke Kysow Date: Wed, 30 May 2018 18:59:26 +0200 Subject: [PATCH] Fix some spelling errors. --- server/events/comment_parser.go | 2 +- server/events/webhooks/slack_client_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/events/comment_parser.go b/server/events/comment_parser.go index 4b024dfc5..d0e921d79 100644 --- a/server/events/comment_parser.go +++ b/server/events/comment_parser.go @@ -38,7 +38,7 @@ const ( // CommentParsing handles parsing pull request comments. type CommentParsing interface { // Parse attempts to parse a pull request comment to see if it's an Atlantis - // commmand. + // command. Parse(comment string, vcsHost models.VCSHostType) CommentParseResult } diff --git a/server/events/webhooks/slack_client_test.go b/server/events/webhooks/slack_client_test.go index d040ba1ff..765e54bd1 100644 --- a/server/events/webhooks/slack_client_test.go +++ b/server/events/webhooks/slack_client_test.go @@ -32,7 +32,7 @@ var client webhooks.DefaultSlackClient var result webhooks.ApplyResult func TestAuthTest_Success(t *testing.T) { - t.Log("When the underylying client suceeds, function should succeed") + t.Log("When the underylying client succeeds, function should succeed") setup(t) err := client.AuthTest() Ok(t, err) @@ -91,7 +91,7 @@ func TestChannelExists_Error(t *testing.T) { } func TestPostMessage_Success(t *testing.T) { - t.Log("When apply succeds, function should succeed and indicate success") + t.Log("When apply succeeds, function should succeed and indicate success") setup(t) expParams := slack.NewPostMessageParameters()