Fix 'occurred' typo
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Sat, 23 May 2020 10:36:30 +0000 (12:36 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Sat, 23 May 2020 10:36:30 +0000 (12:36 +0200)
asyncio/async_io.cpp
asyncio/async_process.cpp

index 8b96df7..9bd95bc 100644 (file)
@@ -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.
index a5f3285..3f0b73b 100644 (file)
@@ -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)
 {