1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 08:12:55 +08:00

Indentation

This commit is contained in:
DrabWeb 2017-05-23 14:42:57 -03:00
parent 7b9eacc213
commit aa9a636c3c

View File

@ -170,8 +170,8 @@ namespace osu.Game.Overlays
if (ResultCounts == null) return; if (ResultCounts == null) return;
resultCountsText.Text = pluralize(@"Artist", ResultCounts?.Artists ?? 0) + ", " + resultCountsText.Text = pluralize(@"Artist", ResultCounts?.Artists ?? 0) + ", " +
pluralize(@"Song", ResultCounts?.Songs ?? 0) + ", " + pluralize(@"Song", ResultCounts?.Songs ?? 0) + ", " +
pluralize(@"Tag", ResultCounts?.Tags ?? 0); pluralize(@"Tag", ResultCounts?.Tags ?? 0);
} }
private string pluralize(string prefix, int value) private string pluralize(string prefix, int value)