Skip to content

Commit

Permalink
Typo fix in UDPHandler.h (#4111)
Browse files Browse the repository at this point in the history
  • Loading branch information
aiyolo authored Aug 17, 2023
1 parent 9a73467 commit 1c6e5aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Net/include/Poco/Net/UDPHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,15 +311,15 @@ class UDPHandlerImpl: public Runnable, public RefCountedObject
}

virtual void processData(char*)
/// Caled when data is received by reader.
/// Called when data is received by reader.
///
/// No-op here, must be overridden by inheriting
/// class in order to do useful work.
{
};

virtual void processError(char* buf)
/// Caled when error is detected by reader.
/// Called when error is detected by reader.
///
/// Only functional if stream pointer is provided
/// to the handler, otherwise it must be overridden
Expand All @@ -330,7 +330,7 @@ class UDPHandlerImpl: public Runnable, public RefCountedObject
}

void start()
/// Stars the handler run in thread.
/// Starts the handler run in thread.
{
_thread.start(*this);
}
Expand Down

0 comments on commit 1c6e5aa

Please sign in to comment.