From 95ac1b1012260603cac38386fc78ae6dde5cf6be Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Thu, 2 Aug 2018 09:51:48 +0200 Subject: [PATCH] add new line (#6) --- server/plugin.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/plugin.go b/server/plugin.go index f757773c2..7900b254d 100644 --- a/server/plugin.go +++ b/server/plugin.go @@ -297,7 +297,7 @@ func (p *Plugin) GetToDo(ctx context.Context, username string, githubClient *git text += "##### Review Requests\n" if issueResults.GetTotal() == 0 { - text += "You have don't have any pull requests awaiting your review." + text += "You have don't have any pull requests awaiting your review.\n" } else { text += fmt.Sprintf("You have %v pull requests awaiting your review:\n", issueResults.GetTotal()) @@ -309,7 +309,7 @@ func (p *Plugin) GetToDo(ctx context.Context, username string, githubClient *git text += "##### Your Open Pull Requests\n" if yourPrs.GetTotal() == 0 { - text += "You have don't have any open pull requests." + text += "You have don't have any open pull requests.\n" } else { text += fmt.Sprintf("You have %v open pull requests:\n", yourPrs.GetTotal())