Adjust xmldoc slightly

This commit is contained in:
Dean Herbert 2024-02-18 17:54:29 +08:00
parent 060b01eee8
commit 9655e8c48a
No known key found for this signature in database
1 changed files with 2 additions and 3 deletions

View File

@ -171,11 +171,10 @@ protected virtual void CreateNestedHitObjects(CancellationToken cancellationToke
private Judgement judgement;
/// <summary>
/// Creates the <see cref="Judgement"/> that represents the scoring information for this <see cref="HitObject"/>.
/// Should be overridden to create a <see cref="Judgement"/> that represents the scoring information for this <see cref="HitObject"/>.
/// </summary>
/// <remarks>
/// Use <see cref="Judgement"/> to avoid unnecessary allocations.
/// This method has been left public for compatibility reasons and eventually will be made protected.
/// For read access, use <see cref="Judgement"/> to avoid unnecessary allocations.
/// </remarks>
[NotNull]
public virtual Judgement CreateJudgement() => new Judgement();