diff --git a/osu.Game/Database/BeatmapSetOnlineInfo.cs b/osu.Game/Database/BeatmapSetOnlineInfo.cs index 28461c0447..aad565eff9 100644 --- a/osu.Game/Database/BeatmapSetOnlineInfo.cs +++ b/osu.Game/Database/BeatmapSetOnlineInfo.cs @@ -11,25 +11,25 @@ namespace osu.Game.Database public class BeatmapSetOnlineInfo { /// - /// The different sizes of cover art for this beatmap. + /// The different sizes of cover art for this beatmap set. /// [JsonProperty(@"covers")] public BeatmapSetOnlineCovers Covers { get; set; } /// - /// A small sample clip of this beatmap's song. + /// A small sample clip of this beatmap set's song. /// [JsonProperty(@"previewUrl")] public string Preview { get; set; } /// - /// The amount of plays this set has. + /// The amount of plays this beatmap set has. /// [JsonProperty(@"play_count")] public int PlayCount { get; set; } /// - /// The amount of people who have favourited this map. + /// The amount of people who have favourited this beatmap set. /// [JsonProperty(@"favourite_count")] public int FavouriteCount { get; set; }