From 29ae5f8e9b1b202d002a16e1f9e6f01bde47d99c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 2 Jul 2016 11:57:41 +0200 Subject: [PATCH] ws2_32/tests: Fix a typo in a comment. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 68532798878..ed31f255138 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -2652,7 +2652,7 @@ static void test_WSADuplicateSocket(void) closesocket(source); /* create a socket, bind it, duplicate it then send data on source and - * receve in the duplicated socket */ + * receive in the duplicated socket */ source = WSASocketA(AF_INET, SOCK_DGRAM, IPPROTO_UDP, NULL, 0, 0); ok(source != INVALID_SOCKET, "WSASocketA should have succeeded\n");