Skip to content

Commit 1722242

Browse files
committed
lint
1 parent a0b30ad commit 1722242

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/actions/notifier.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ func (n *actionsNotifier) CreateIssueComment(ctx context.Context, doer *user_mod
258258
Notify(ctx)
259259
}
260260

261-
func (m *actionsNotifier) UpdateComment(ctx context.Context, doer *user_model.User, c *issues_model.Comment, oldContent string) {
261+
func (n *actionsNotifier) UpdateComment(ctx context.Context, doer *user_model.User, c *issues_model.Comment, oldContent string) {
262262
ctx = withMethod(ctx, "UpdateComment")
263263

264264
if err := c.LoadIssue(ctx); err != nil {
@@ -305,7 +305,7 @@ func (m *actionsNotifier) UpdateComment(ctx context.Context, doer *user_model.Us
305305
Notify(ctx)
306306
}
307307

308-
func (m *actionsNotifier) DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) {
308+
func (n *actionsNotifier) DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) {
309309
ctx = withMethod(ctx, "DeleteComment")
310310

311311
if err := comment.LoadIssue(ctx); err != nil {

0 commit comments

Comments
 (0)