Fix 'occurred' typo
[libasyncio] / asyncio / async_io.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.