Typo fix in UDPHandler.h (#4111)

This commit is contained in:
Zhu Asan 2023-08-18 02:27:32 +08:00 committed by GitHub
parent 9a734674ed
commit 1c6e5aa614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ public:
} }
virtual void processData(char*) 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 /// No-op here, must be overridden by inheriting
/// class in order to do useful work. /// class in order to do useful work.
@ -319,7 +319,7 @@ public:
}; };
virtual void processError(char* buf) 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 /// Only functional if stream pointer is provided
/// to the handler, otherwise it must be overridden /// to the handler, otherwise it must be overridden
@ -330,7 +330,7 @@ public:
} }
void start() void start()
/// Stars the handler run in thread. /// Starts the handler run in thread.
{ {
_thread.start(*this); _thread.start(*this);
} }