@@ -139,11 +139,11 @@ * @brief Asynchronously resolves the specified host and creates an address for * the host / port pair. * * @param host The host to resolve * @param port The port for the resulting address - * @param block THe block to execute once the host has been resolved + * @param block The block to execute once the host has been resolved */ + (void)asyncResolveAddressForHost: (OFString*)host port: (uint16_t)port block: (of_udp_socket_async_resolve_block_t)block; # endif @@ -244,15 +244,15 @@ - (void)sendBuffer: (const void*)buffer length: (size_t)length receiver: (const of_udp_socket_address_t*)receiver; /*! - * @brief Cancels all pending asyncronous requests on the socket. + * @brief Cancels all pending asynchronous requests on the socket. * * @warning You are not allowed to call this inside the handler of an - * asyncronous request, as this would cancel the asyncronous request - * that is currently being handled! To cancel all pending asyncronous + * asynchronous request, as this would cancel the asynchronous request + * that is currently being handled! To cancel all pending asynchronous * requests after the handler has finished executing, you may schedule * a timer for this method with a timeout of 0 from inside the handler. */ - (void)cancelAsyncRequests;