From: Thomas Jarosch Date: Sat, 23 May 2020 10:36:30 +0000 (+0200) Subject: Fix 'occurred' typo X-Git-Url: http://developer.intra2net.com/git/?p=libasyncio;a=commitdiff_plain;h=9b1d9a8b3cd8c0728476b45cca011b8e5bda467a Fix 'occurred' typo --- diff --git a/asyncio/async_io.cpp b/asyncio/async_io.cpp index 8b96df7..9bd95bc 100644 --- a/asyncio/async_io.cpp +++ b/asyncio/async_io.cpp @@ -384,7 +384,7 @@ void TimerBase::activate(bool active) /** - * called when the timer event occured. + * called when the timer event occurred. */ void TimerBase::execute() { @@ -1228,7 +1228,7 @@ Backend* Backend::getBackend() * Constructs the necessary structures and calls poll(). * Finally interprets the results from poll() (i.e. performs the reading/writing/timer events) * - * @param timeout maximal wait value in milliseconds; negative value waits until at least one event occured. + * @param timeout maximal wait value in milliseconds; negative value waits until at least one event occurred. * @return @a true if there was at least one active object; otherwise @a false * * @note this method is a little beast. diff --git a/asyncio/async_process.cpp b/asyncio/async_process.cpp index a5f3285..3f0b73b 100644 --- a/asyncio/async_process.cpp +++ b/asyncio/async_process.cpp @@ -634,7 +634,7 @@ void ProcessImplementation::stopProcess(bool force) /** * sends a signal to the child process. * @param signal the Signal which should be send. - * @return @a true if the signal was sent; @a false if an error occured. + * @return @a true if the signal was sent; @a false if an error occurred. */ bool ProcessImplementation::kill(Signal signal) {