diff --git a/osu.Game/Stores/RealmArchiveModelImporter.cs b/osu.Game/Stores/RealmArchiveModelImporter.cs
index c6231e5583..4bbd6b2264 100644
--- a/osu.Game/Stores/RealmArchiveModelImporter.cs
+++ b/osu.Game/Stores/RealmArchiveModelImporter.cs
@@ -173,7 +173,7 @@ namespace osu.Game.Stores
/// Note that this bypasses the UI flow and should only be used for special cases or testing.
///
/// The containing data about the to import.
- /// Whether this is a low priority import.
+ /// Whether this import is part of a larger batch.
/// An optional cancellation token.
/// The imported model, if successful.
public async Task?> Import(ImportTask task, bool batchImport = false, CancellationToken cancellationToken = default)
@@ -205,7 +205,7 @@ namespace osu.Game.Stores
/// Silently import an item from an .
///
/// The archive to be imported.
- /// Whether this is a low priority import.
+ /// Whether this import is part of a larger batch.
/// An optional cancellation token.
public async Task?> Import(ArchiveReader archive, bool batchImport = false, CancellationToken cancellationToken = default)
{