Fix english

This commit is contained in:
Dean Herbert 2020-05-24 23:09:38 +09:00
parent 234fa28445
commit 904d17224f
1 changed files with 2 additions and 2 deletions

View File

@ -375,7 +375,7 @@ void rollback()
}, cancellationToken, TaskCreationOptions.HideScheduler, import_scheduler).Unwrap();
/// <summary>
/// Exports an item to an legacy (.zip based) package.
/// Exports an item to a legacy (.zip based) package.
/// </summary>
/// <param name="item">The item to export.</param>
public void Export(TModel item)
@ -383,7 +383,7 @@ public void Export(TModel item)
var retrievedItem = ModelStore.ConsumableItems.FirstOrDefault(s => s.ID == item.ID);
if (retrievedItem == null)
throw new ArgumentException("Specified model count not be found", nameof(item));
throw new ArgumentException("Specified model could not be found", nameof(item));
using (var archive = ZipArchive.Create())
{