Skip to content

Commit 8777c63

Browse files
committed
Fix: typo
1 parent c853b4e commit 8777c63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/crystal/event_loop/iocp.cr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ class Crystal::EventLoop::IOCP < Crystal::EventLoop
240240
create_completion_port(r) unless read_blocking
241241
create_completion_port(w) unless write_blocking
242242
{
243-
IO::FileDescriptor.new(handle: r, blocking: !!read_blocking)
244-
IO::FileDescriptor.new(handle: w, blocking: !!write_blocking)
243+
IO::FileDescriptor.new(handle: r, blocking: !!read_blocking),
244+
IO::FileDescriptor.new(handle: w, blocking: !!write_blocking),
245245
}
246246
end
247247

0 commit comments

Comments
 (0)