From 8bff0d533516d7dd7c50e3f6a1aeb8a010c68e4e Mon Sep 17 00:00:00 2001 From: electricessence <5899455+electricessence@users.noreply.github.com> Date: Sun, 15 Jun 2025 14:48:27 -0700 Subject: [PATCH] fix typo in comment --- src/Open.AsyncToolkit.BlobStorage/BlobStorageExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Open.AsyncToolkit.BlobStorage/BlobStorageExtensions.cs b/src/Open.AsyncToolkit.BlobStorage/BlobStorageExtensions.cs index 8820c0f..099dbbc 100644 --- a/src/Open.AsyncToolkit.BlobStorage/BlobStorageExtensions.cs +++ b/src/Open.AsyncToolkit.BlobStorage/BlobStorageExtensions.cs @@ -120,7 +120,7 @@ internal static async ValueTask WriteAsync(this Stream stream, if (data.IsEmpty) return; cancellationToken.ThrowIfCancellationRequested(); - // Write to the steam manually instead of using the modern methods. + // Write to the stream manually instead of using the modern methods. // Get a handle to the underlying memory without copying if (MemoryMarshal.TryGetArray(data, out ArraySegment segment))