From e8332aa7e934c4bfa7f266aba6a6f7d3c67c5e06 Mon Sep 17 00:00:00 2001 From: Eric Marks <64268853+Eric-A-Marks@users.noreply.github.com> Date: Wed, 17 Mar 2021 09:51:34 -0500 Subject: [PATCH] Update EventQueue.h --- events/include/events/EventQueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events/include/events/EventQueue.h b/events/include/events/EventQueue.h index 97b898f06f..a65c8a9068 100644 --- a/events/include/events/EventQueue.h +++ b/events/include/events/EventQueue.h @@ -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.