From 59b9a636d372b4167ce2475376bc31394c30fb2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Mon, 18 Sep 2023 10:46:14 +0200 Subject: [PATCH] Fix grammar in comment --- osu.Game/Scoring/ScoreImporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);