Use typeparamref.

This commit is contained in:
Huo Yaoyuan
2019-11-17 20:48:23 +08:00
parent 5727963f86
commit f05b83d7d4
10 changed files with 33 additions and 33 deletions

View File

@ -6,7 +6,7 @@ using System;
namespace osu.Game.Database
{
/// <summary>
/// Represents a model manager that publishes events when <see cref="TModel"/>s are added or removed.
/// Represents a model manager that publishes events when <typeparamref name="TModel"/>s are added or removed.
/// </summary>
/// <typeparam name="TModel">The model type.</typeparam>
public interface IModelManager<out TModel>