chore(UDPServer): fix spelling

This commit is contained in:
Alex Fabijanic 2021-04-26 14:59:16 +02:00
parent 3c61eeeb3e
commit 54667890eb
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ namespace Net {
template <std::size_t S = POCO_UDP_BUF_SIZE>
class MultiSocketPoller
/// MultiSocketPoller, as its name indicates, repeatedly polls a set of
/// sockets for readability and/or eror. If socket is readable or in error
/// sockets for readability and/or error. If socket is readable or in error
/// state, the reading/error handling actions are delegated to the reader.
{
public:

View File

@ -30,7 +30,7 @@ namespace Net {
template <std::size_t S = POCO_UDP_BUF_SIZE>
class SingleSocketPoller
/// SinlgeSocketPoller, as its name indicates, repeatedly polls a single
/// SingleSocketPoller, as its name indicates, repeatedly polls a single
/// socket for readability; if the socket is readable, the reading action
/// is delegated to the reader.
{

View File

@ -42,7 +42,7 @@ typedef int UDPMsgSizeT;
template <std::size_t S = POCO_UDP_BUF_SIZE>
class UDPHandlerImpl: public Runnable, public RefCountedObject
/// UDP handler handles the data that arives to the UDP server.
/// UDP handler handles the data that arrives to the UDP server.
/// The class is thread-safe and runs in its own thread, so many handlers
/// can be used in parallel.Handler manages and provides the storage
/// (fixed-size memory blocks of S size) to the reader, which signals back