mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Trim trailing whitespace from diff hints
Summary: Although these don't do any harm, they show up in my editor which is configured to highlight trailing whitespace. Test Plan: Submitted this diff... saw no trailing whitespace. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12369
This commit is contained in:
parent
e101496508
commit
bf1b30ae26
1 changed files with 1 additions and 1 deletions
|
@ -1605,7 +1605,7 @@ EOTEXT
|
|||
while (!$done) {
|
||||
$template = rtrim($template, "\r\n")."\n\n";
|
||||
foreach ($issues as $issue) {
|
||||
$template .= '# '.$issue."\n";
|
||||
$template .= rtrim('# '.$issue)."\n";
|
||||
}
|
||||
$template .= "\n";
|
||||
|
||||
|
|
Loading…
Reference in a new issue