Skip to content

Commit 1c6e5aa

Browse files
authored
Typo fix in UDPHandler.h (#4111)
1 parent 9a73467 commit 1c6e5aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Net/include/Poco/Net/UDPHandler.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -311,15 +311,15 @@ class UDPHandlerImpl: public Runnable, public RefCountedObject
311311
}
312312

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

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

332332
void start()
333-
/// Stars the handler run in thread.
333+
/// Starts the handler run in thread.
334334
{
335335
_thread.start(*this);
336336
}

0 commit comments

Comments
 (0)