Skip to content

Commit cad44ab

Browse files
authored
Add newlines to triage printout for markdown viewing (#8600)
I often run this triage report at the beginning of my triage week and paste it into a markdown document, so I added newlines to make the paste automatically markdown-friendly. Without the newlines the table doesn't show up and the lines get collapsed into a single paragraph.
1 parent 8cda6e4 commit cad44ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tool/triage/bin/triage.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ void printCreationTimeCounts(Iterable<Issue> issues, {required int issueCount, r
5050
}
5151
}
5252

53-
print('issues: $issueCount (+ $prCount PRs)');
53+
print('issues: $issueCount (+ $prCount PRs)\n');
5454
var unprioritizedPercentage = '${(unpriortizedCount / issueCount).toStringAsFixed(2).substring(2)}%';
5555
print(
56-
'unprioritized: $unpriortizedCount ($unprioritizedPercentage)');
57-
print('created within ...');
56+
'unprioritized: $unpriortizedCount ($unprioritizedPercentage)\n');
57+
print('created within ...\n');
5858

5959
var timeData = [seven, fourteen, twentyEight, ninety, threeSixty, tenEighty, beyond];
6060

0 commit comments

Comments
 (0)