From f9b708a31f16f66c851bb44531c43ead02735454 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sun, 22 Oct 2017 11:31:05 +0100 Subject: [PATCH] fix help message Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/github.com/matrix-org/go-neb/services/github/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/go-neb/services/github/github.go b/src/github.com/matrix-org/go-neb/services/github/github.go index f981401..12349de 100644 --- a/src/github.com/matrix-org/go-neb/services/github/github.go +++ b/src/github.com/matrix-org/go-neb/services/github/github.go @@ -365,7 +365,7 @@ func (s *Service) cmdGithubClose(roomID, userID string, args []string) (interfac return gomatrix.TextMessage{"m.notice", fmt.Sprintf("Closed issue: %s", *issueComment.HTMLURL)}, nil } -const cmdGithubReopenUsage = `!github close [owner/repo]#issue` +const cmdGithubReopenUsage = `!github reopen [owner/repo]#issue` func (s *Service) cmdGithubReopen(roomID, userID string, args []string) (interface{}, error) { cli, resp, err := s.requireGithubClientFor(userID)