Correct reference to hit result and link to them

This commit is contained in:
Jonas Brandstötter 2024-10-14 16:14:29 +02:00
parent 750e0b29ca
commit 25c0ff4168
No known key found for this signature in database
GPG Key ID: DF758C8A6271E098

View File

@ -58,8 +58,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
/// <summary>
/// The statistics that appear in the table, grouped by their display name. If multiple HitResults have the same
/// DisplayName (for example, "slider end" is the name for both HitResult.SliderTailTick and HitResult.SmallTickHit
/// in osu!std) the name will only be listed once.
/// DisplayName (for example, "slider end" is the name for both <see cref="HitResult.SliderTailHit"/> and <see cref="HitResult.SmallTickHit"/>
/// in osu!) the name will only be listed once.
/// </summary>
private readonly List<(LocalisableString displayName, IEnumerable<HitResult> results)> statisticResults = new List<(LocalisableString displayName, IEnumerable<HitResult> results)>();