diff --git a/osu.Game/Screens/Select/BeatmapDetails.cs b/osu.Game/Screens/Select/BeatmapDetails.cs
index d217fa66fe..63fdfe3717 100644
--- a/osu.Game/Screens/Select/BeatmapDetails.cs
+++ b/osu.Game/Screens/Select/BeatmapDetails.cs
@@ -92,6 +92,11 @@ namespace osu.Game.Screens.Select
updateMetrics(requestedBeatmap.Metrics, false);
}
+ ///
+ /// Update displayed metrics.
+ ///
+ /// New metrics to overwrite the existing display. Can be null.
+ /// Whether to hide the display on null or empty metrics. If false, we will dim as if waiting for further updates.
private void updateMetrics(BeatmapMetrics metrics, bool failOnMissing = true)
{
var hasRatings = metrics?.Ratings.Any() ?? false;