Skip to content

Commit

Permalink
add new line (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanato authored and jwilander committed Aug 2, 2018
1 parent 0f5eb9c commit 95ac1b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand All @@ -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())

Expand Down

0 comments on commit 95ac1b1

Please sign in to comment.