Skip to content

Commit

Permalink
consistent space placement
Browse files Browse the repository at this point in the history
  • Loading branch information
kingthorin committed Sep 23, 2024
1 parent 5160ea2 commit 0230ea8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ function cla(signed, committerMap) {
text += ' You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please [add the email address used for this commit to your account](https://help.github.com/articles/why-are-my-commits-linked-to-the-wrong-user/#commits-are-not-linked-to-any-user).<br/>';
}
if (input.suggestRecheck() == 'true') {
text += '<sub>You can retrigger this bot by commenting **recheck** in this Pull Request.</sub> ';
text += '<sub>You can retrigger this bot by commenting **recheck** in this Pull Request. </sub>';
}
text += '<sub>Posted by the **CLA Assistant Lite bot**.</sub>';
return text;
Expand Down
2 changes: 1 addition & 1 deletion src/pullrequest/pullRequestCommentContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function cla(signed: boolean, committerMap: CommitterMap): string {
}

if (input.suggestRecheck() == 'true') {
text += '<sub>You can retrigger this bot by commenting **recheck** in this Pull Request.</sub> '
text += '<sub>You can retrigger this bot by commenting **recheck** in this Pull Request. </sub>'
}
text += '<sub>Posted by the **CLA Assistant Lite bot**.</sub>'
return text
Expand Down

0 comments on commit 0230ea8

Please sign in to comment.