diff --git a/osu.Game/Overlays/DirectOverlay.cs b/osu.Game/Overlays/DirectOverlay.cs index 0572598380..49a3a3abf9 100644 --- a/osu.Game/Overlays/DirectOverlay.cs +++ b/osu.Game/Overlays/DirectOverlay.cs @@ -170,8 +170,8 @@ namespace osu.Game.Overlays if (ResultCounts == null) return; resultCountsText.Text = pluralize(@"Artist", ResultCounts?.Artists ?? 0) + ", " + - pluralize(@"Song", ResultCounts?.Songs ?? 0) + ", " + - pluralize(@"Tag", ResultCounts?.Tags ?? 0); + pluralize(@"Song", ResultCounts?.Songs ?? 0) + ", " + + pluralize(@"Tag", ResultCounts?.Tags ?? 0); } private string pluralize(string prefix, int value)