Spelling corrections

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2017-07-30 16:49:03 +02:00
parent 644817993b
commit e6ce36df64
20 changed files with 30 additions and 30 deletions

View file

@ -221,8 +221,8 @@ w32_socket(int domain, int type, int protocol)
SOCKET sock;
/*
* We have to use WSASocket() to create non-overlapped IO sockets.
* Overlapped IO sockets cannot be used with read/write.
* We have to use WSASocket() to create non-overlapped I/O sockets.
* Overlapped I/O sockets cannot be used with read/write.
*/
sock = WSASocket(domain, type, protocol, NULL, 0, 0);
if (sock == INVALID_SOCKET) {