Skip to content

Commit

Permalink
chore: Fixes spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
nszilard committed Jan 14, 2022
1 parent d706b43 commit e5292e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion models/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (client *Client) SetMessage(msg *slack.Message) {
client.msg = msg
}

// Send is responsibe for sending the Slack message
// Send is responsible for sending the Slack message
func (client *Client) Send() error {
setOptionsOnMessage(client)

Expand Down
4 changes: 2 additions & 2 deletions models/cmd.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package models

// Root command environemnt variables and flags
// Root command environment variables and flags
const (
ArgSlackOrgIDEnv = "SLACK_ORG_ID"
ArgSlackWebhookIDEnv = "SLACK_WEBHOOK_ID"
Expand All @@ -17,7 +17,7 @@ const (
ArgSlackUserImageFlag = "slack-user-image"
)

// Changelog command environemnt variables and flags
// Changelog command environment variables and flags
const (
ArgChangelogGroupEnv = "CHANGELOG_GROUP"
ArgChangelogServiceEnv = "CHANGELOG_SERVICE"
Expand Down
2 changes: 1 addition & 1 deletion pkg/templates/changelog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func TestChangelog(t *testing.T) {
service := "test"
version := "1.0.0"
changes := "- feat: Some really usefull stuff"
changes := "- feat: Some really useful stuff"

expected := struct {
numberOfBlocks int
Expand Down

0 comments on commit e5292e1

Please sign in to comment.