Fix incorrect xmldoc

This commit is contained in:
iiSaLMaN 2019-07-05 05:32:30 +03:00
parent ae28d82b2f
commit a30f0c03bb
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
namespace osu.Game.Online
{
/// <summary>
/// A component which tracks a beatmap through potential download/import/deletion.
/// A component which tracks a <see cref="TModel"/> through potential download/import/deletion.
/// </summary>
public abstract class DownloadTrackingComposite<TModel, TModelManager> : CompositeDrawable
where TModel : class, IEquatable<TModel>
@ -22,7 +22,7 @@ public abstract class DownloadTrackingComposite<TModel, TModelManager> : Composi
private TModelManager manager;
/// <summary>
/// Holds the current download state of the beatmap, whether is has already been downloaded, is in progress, or is not downloaded.
/// Holds the current download state of the <see cref="TModel"/>, whether is has already been downloaded, is in progress, or is not downloaded.
/// </summary>
protected readonly Bindable<DownloadState> State = new Bindable<DownloadState>();