Skip to content

Commit

Permalink
Fix formatting in Reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
Elevator89 committed May 21, 2022
1 parent 2f8f858 commit b1c9bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Elevator.Subtranslator.Reporter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static void WriteEntriesGrouped(IEnumerable<Entry> entries, StreamWriter sw)
sw.WriteLine(group.Key);
foreach (Entry entry in group)
{
sw.WriteLine($"{entry.Key}\t{entry.EtalonValue}\t{entry.TargetValue}");
sw.WriteLine($"{entry.TargetValue}");
}
}
}
Expand Down

0 comments on commit b1c9bb2

Please sign in to comment.