Skip to content

Commit eb992ee

Browse files
committed
Quote the text.
1 parent f9890e6 commit eb992ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

converter/generator/ProblemSummarizer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ public override void WriteSummary(ProblemRecorder recorder, TextWriter textWrite
6969
foreach (var (category, locations) in problems)
7070
{
7171
textWriter.WriteLine();
72-
textWriter.WriteLine($"::warning::{locations.Count}x {category}");
72+
textWriter.WriteLine($"::warning::{locations.Count}x `{category}`");
7373

7474
foreach (var details in locations.ToLookup(i => i.details, i => i.filePosition).OrderByDescending(fps => fps.Count()))
7575
{
76-
textWriter.WriteLine($"::group::{details.Count()}x {details.Key}");
76+
textWriter.WriteLine($"::group::{details.Count()}x `{details.Key}`");
7777

7878
foreach (var ps in details.ToLookup(fp => fp.File, fp => fp.Position).OrderByDescending(p => p.Count()))
7979
{

0 commit comments

Comments
 (0)