Fix doc move derp

This commit is contained in:
naoey
2019-06-12 00:02:53 +05:30
parent c320b6110c
commit c69d3e2d38
2 changed files with 8 additions and 8 deletions

View File

@ -39,10 +39,10 @@ namespace osu.Game.Database
bool Download(TModel model, params object[] extra);
/// <summary>
/// Checks whether a given <see cref="TModel"/> is available in the local store already.
/// Gets an existing <see cref="TModel"/> download request if it exists.
/// </summary>
/// <param name="model">The <see cref="TModel"/> whose existence needs to be checked.</param>
/// <returns>Whether the <see cref="TModel"/> exists locally.</returns>
/// <param name="model">The <see cref="TModel"/> whose request is wanted.</param>
/// <returns>The <see cref="ArchiveDownloadModelRequest{TModel}"/> object if it exists, otherwise null.</returns>
ArchiveDownloadModelRequest<TModel> GetExistingDownload(TModel model);
}
}