if (!WrappedConnection->handle(SingletonObject->Stub.get(),call))
             {
                 // create an result with default-constructor if the handler could not
-                // successfully do a call but no exception occured
+                // successfully do a call but no exception occurred
                 result=typename detail::TypeWrap<R>::type();
             }
             return result;
 
     callbacks[event].push_back(func);
 }
 
-/** @brief an event has occured, execute the callbacks that are registered for this event
+/** @brief an event has occurred, execute the callbacks that are registered for this event
 
-    @param event event type that has occured
+    @param event event type that has occurred
 */
 void connection::do_callbacks(callback_event_type event)
 {
 
 }
 
 
-/** @brief an event occured, call all server-side callbacks
+/** @brief an event occurred, call all server-side callbacks
 
-    @param event event that occured
+    @param event event that occurred
     @param conn_id connection-id parameter that will be given to the callback-function
 */
 void server::do_callbacks(callback_event_type event, unsigned int conn_id)