Skip to content

Commit cf62f63

Browse files
committed
Merge branch 'csharp-pending-import' of https://github.com/yowl/witx-bindgen into csharp-pending-import
2 parents 3d42d1f + b7fe570 commit cf62f63

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)