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))