Skip to content

Commit eeacb98

Browse files
committed
go fmt
1 parent ea4d0c3 commit eeacb98

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/structs/issue_comment.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ type EditIssueCommentOption struct {
3737
}
3838

3939
type CommentReaction struct {
40-
Reaction string `json:"reaction""`
41-
Users []*string `json:"users"`
42-
Count int64 `json:"count"`
40+
Reaction string `json:"reaction""`
41+
Users []*string `json:"users"`
42+
Count int64 `json:"count"`
4343
}
4444

4545
type CommentReactionList []*CommentReaction

routers/api/v1/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ func RegisterRoutes(m *macaron.Macaron) {
669669
m.Combo("").Get(repo.ListIssueComments).
670670
Post(reqToken(), mustNotBeArchived, bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
671671
m.Group("/:id", func() {
672-
m.Combo("",reqToken()).
672+
m.Combo("", reqToken()).
673673
Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueCommentDeprecated).
674674
Delete(repo.DeleteIssueCommentDeprecated)
675675
m.Combo("/reactions").

0 commit comments

Comments
 (0)