1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 19:10:28 +08:00

Fix(?) xmldoc

This commit is contained in:
Dean Herbert
2024-07-10 18:57:53 +09:00
Unverified
parent 704e7e843f
commit 6cee0210c3
+3 -3
View File
@@ -35,12 +35,12 @@ namespace osu.Game.Database
Task<Live<TModel>?> ImportAsUpdate(ProgressNotification notification, ImportTask task, TModel original);
/// <summary>
/// Mount all files for a <see cref="TModel"/> to a temporary directory to allow for external editing.
/// Mount all files for a model to a temporary directory to allow for external editing.
/// </summary>
/// <remarks>
/// When editing is completed, call <see cref="ExternalEditOperation{TModel}.Finish"/> to begin the import-and-update process.
/// When editing is completed, call Finish() on the returned operation class to begin the import-and-update process.
/// </remarks>
/// <param name="model">The <see cref="TModel"/> to mount.</param>
/// <param name="model">The model to mount.</param>
public Task<ExternalEditOperation<TModel>> BeginExternalEditing(TModel model);
/// <summary>