diff --git a/osu.Game/Online/API/Requests/Responses/APIScoreInfo.cs b/osu.Game/Online/API/Requests/Responses/APIScoreInfo.cs
index b996d21ad3..4abb227414 100644
--- a/osu.Game/Online/API/Requests/Responses/APIScoreInfo.cs
+++ b/osu.Game/Online/API/Requests/Responses/APIScoreInfo.cs
@@ -70,7 +70,12 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonConverter(typeof(StringEnumConverter))]
public ScoreRank Rank { get; set; }
- // TODO: This function will eventually be going away.
+ ///
+ /// Create a from an API score instance.
+ ///
+ /// A ruleset store, used to populate a ruleset instance in the returned score.
+ /// An optional beatmap, copied into the returned score (for cases where the API does not populate the beatmap).
+ ///
public ScoreInfo CreateScoreInfo(RulesetStore rulesets, BeatmapInfo beatmap = null)
{
var ruleset = rulesets.GetRuleset(OnlineRulesetID);