diff --git a/osu.Game/Database/BeatmapMetric.cs b/osu.Game/Database/BeatmapMetric.cs index e40da27d1d..ae21bc4170 100644 --- a/osu.Game/Database/BeatmapMetric.cs +++ b/osu.Game/Database/BeatmapMetric.cs @@ -8,17 +8,17 @@ namespace osu.Game.Database public class BeatmapMetric { /// - /// Ratings for a beatmap, length should be 10 + /// Total vote counts of user ratings on a scale of 0..length. /// public IEnumerable Ratings { get; set; } /// - /// Fails for a beatmap, length should be 100 + /// Points of failure on a relative time scale (usually 0..100). /// public IEnumerable Fails { get; set; } /// - /// Retries for a beatmap, length should be 100 + /// Points of retry on a relative time scale (usually 0..100). /// public IEnumerable Retries { get; set; } }