1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 06:42:54 +08:00

Apply documentation suggestion

This commit is contained in:
Salman Ahmed 2021-02-04 02:20:18 +03:00
parent 62d0036c81
commit db3f9e7cbe

View File

@ -67,10 +67,10 @@ namespace osu.Game.Online
} }
/// <summary> /// <summary>
/// Verifies that the given databased model is in a correct state to be considered available. /// Checks that a database model matches the one expected to be downloaded.
/// </summary> /// </summary>
/// <example> /// <example>
/// In the case of multiplayer/playlists, this has to verify that the databased beatmap set with the selected beatmap matches what's online. /// In the case of multiplayer/playlists, this has to check that the databased beatmap set with the selected beatmap matches what's online.
/// </example> /// </example>
/// <param name="databasedModel">The model in database.</param> /// <param name="databasedModel">The model in database.</param>
protected virtual bool VerifyDatabasedModel([NotNull] TModel databasedModel) => true; protected virtual bool VerifyDatabasedModel([NotNull] TModel databasedModel) => true;