From ff3a3879fd85c87cb64392ee2c9027db59320228 Mon Sep 17 00:00:00 2001 From: Pixelguin <11445611+Pixelguin@users.noreply.github.com> Date: Mon, 12 May 2025 10:17:11 -0700 Subject: [PATCH] Correct "weary" to "wary" --- FileEmulationFramework.Lib/IO/MultiStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FileEmulationFramework.Lib/IO/MultiStream.cs b/FileEmulationFramework.Lib/IO/MultiStream.cs index ceace26..838c974 100644 --- a/FileEmulationFramework.Lib/IO/MultiStream.cs +++ b/FileEmulationFramework.Lib/IO/MultiStream.cs @@ -73,7 +73,7 @@ public override int Read(Span buffer) var index = _offsetRangeSelector.Select(Position); if (index == -1) { - _log?.Warning($"[{nameof(MultiStream)}] Cannot read from this position!! Position: {{0}}, Length: {{1}}. This is not necessarily an error, some implementations of e.g. CopyTo might cause this; just be weary of this message.", Position, Length); + _log?.Warning($"[{nameof(MultiStream)}] Cannot read from this position!! Position: {{0}}, Length: {{1}}. This is not necessarily an error, some implementations of e.g. CopyTo might cause this; just be wary of this message.", Position, Length); return 0; }