Skip to content

Commit 13351c9

Browse files
authored
Update equeue.h
1 parent ecbef81 commit 13351c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

events/include/events/equeue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ void equeue_post_user_allocated(equeue_t *queue, void (*cb)(void *), void *event
195195
// Cancel an in-flight event
196196
//
197197
// Attempts to cancel an event referenced by the unique id returned from
198-
// equeue_call or equeue_post. It is safe to call equeue_cancel after an event
198+
// equeue_call or equeue_post. It is not safe to call equeue_cancel after an event
199199
// has already been dispatched.
200200
//
201201
// The equeue_cancel function is irq safe.
@@ -210,7 +210,7 @@ bool equeue_cancel(equeue_t *queue, int id);
210210
// Cancel an in-flight user allocated event
211211
//
212212
// Attempts to cancel an event referenced by its address.
213-
// It is safe to call equeue_cancel_user_allocated after an event
213+
// It is not safe to call equeue_cancel_user_allocated after an event
214214
// has already been dispatched.
215215
//
216216
// The equeue_cancel_user_allocated function is irq safe.

0 commit comments

Comments
 (0)