From 0e4eb00ea52a01ca12621086882d1e4c6c13242e Mon Sep 17 00:00:00 2001 From: Matej Kenda Date: Mon, 4 Dec 2023 16:56:12 +0100 Subject: [PATCH] enh(Net): fix a typo --- Net/include/Poco/Net/SocketImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Net/include/Poco/Net/SocketImpl.h b/Net/include/Poco/Net/SocketImpl.h index ad0f1b44f..e49579097 100644 --- a/Net/include/Poco/Net/SocketImpl.h +++ b/Net/include/Poco/Net/SocketImpl.h @@ -144,7 +144,7 @@ public: void useFileDescriptor(poco_socket_t fd); /// Use a external file descriptor for the socket. Required to be careful - /// about what kind of file descriptor you're passing to make sure it's compatable + /// about what kind of file descriptor you're passing to make sure it's compatible /// with how you plan on using it. These specifics are platform-specific. /// Not valid to call this if the internal socket is already initialized. /// Poco takes ownership of the file descriptor, closing it when this socket is closed.