diff --git a/osu.Game/Scoring/ScoreImporter.cs b/osu.Game/Scoring/ScoreImporter.cs index 650e25a512..2875035e1b 100644 --- a/osu.Game/Scoring/ScoreImporter.cs +++ b/osu.Game/Scoring/ScoreImporter.cs @@ -66,7 +66,7 @@ private void onMissingBeatmap(LegacyScoreDecoder.BeatmapNotFoundException e, Arc { var stream = new MemoryStream(); - // stream will close after exception throw, so fetch the stream again. + // stream will be closed after the exception was thrown, so fetch the stream again. using (var scoreStream = archive.GetStream(name)) { scoreStream.CopyTo(stream);