Skip to content

Commit 646e50d

Browse files
authored
Merge pull request #1194 from slack-go/fix-lintter-error
gofmt
2 parents 58c5a5f + 2b2e893 commit 646e50d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

examples/pins/pins.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import (
77
"github.com/slack-go/slack"
88
)
99

10-
/*
11-
WARNING: This example is destructive in the sense that it create a channel called testpinning
12-
*/
10+
// WARNING: This example is destructive in the sense that it create a channel called testpinning
1311
func main() {
1412
var (
1513
apiToken string

messages.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ type Msg struct {
100100
Members []string `json:"members,omitempty"`
101101

102102
// channels.replies, groups.replies, im.replies, mpim.replies
103-
ReplyCount int `json:"reply_count,omitempty"`
103+
ReplyCount int `json:"reply_count,omitempty"`
104104
ReplyUsers []string `json:"reply_users,omitempty"`
105-
Replies []Reply `json:"replies,omitempty"`
106-
ParentUserId string `json:"parent_user_id,omitempty"`
107-
LatestReply string `json:"latest_reply,omitempty"`
105+
Replies []Reply `json:"replies,omitempty"`
106+
ParentUserId string `json:"parent_user_id,omitempty"`
107+
LatestReply string `json:"latest_reply,omitempty"`
108108

109109
// file_share, file_comment, file_mention
110110
Files []File `json:"files,omitempty"`

0 commit comments

Comments
 (0)