Update EventQueue.h

pull/14438/head
Eric Marks 2021-03-17 09:51:34 -05:00 committed by GitHub
parent 13351c9253
commit e8332aa7e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ public:
/** Cancel an in-flight event
*
* Attempts to cancel an event referenced by the unique id returned from
* one of the call functions. It is safe to call cancel after an event
* one of the call functions. It is not safe to call cancel after an event
* has already been dispatched.
*
* id must be valid i.e. event must have not finished executing.
@ -175,7 +175,7 @@ public:
/** Cancel an in-flight user allocated event
*
* Attempts to cancel an UserAllocatedEvent referenced by its address
* It is safe to call cancel after an event has already been dispatched.
* It is not safe to call cancel after an event has already been dispatched.
*
* Event must be valid i.e. event must have not finished executing
* and must have been bound to this queue.