Skip to content

Commit b7fe570

Browse files
yowldicej
andauthored
Apply suggestions from code review
Co-authored-by: Joel Dice <joel.dice@akamai.com>
1 parent 760b8d1 commit b7fe570

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/csharp/src/AsyncSupport.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,8 @@ internal static (StreamReader<T>, StreamWriter<T>) RawStreamNew<T>(StreamVTable
340340
var readerHandle = (int)(packed & 0xFFFFFFFF);
341341
var writerHandle = (int)(packed >> 32);
342342

343-
Console.WriteLine($"Createing reader<T> with handle {readerHandle}");
344-
Console.WriteLine($"Createing writer<T> with handle {writerHandle}");
343+
Console.WriteLine($"Creating reader<T> with handle {readerHandle}");
344+
Console.WriteLine($"Creating writer<T> with handle {writerHandle}");
345345
return (new StreamReader<T>(readerHandle, vtable), new StreamWriter<T>(writerHandle, vtable));
346346
}
347347
}

0 commit comments

Comments
 (0)