From 9556a7d1f647f61634fb782ae7ba814e5a20535e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 2 May 2011 23:22:09 -0400 Subject: [PATCH] Add missing words to EVLOOP_NONBLOCK documentation --- include/event2/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/event2/event.h b/include/event2/event.h index 09502fd6..3850318f 100644 --- a/include/event2/event.h +++ b/include/event2/event.h @@ -333,7 +333,7 @@ int event_base_set(struct event_base *, struct event *); * have had their callbacks run. */ #define EVLOOP_ONCE 0x01 /** Do not block: see which events are ready now, run the callbacks - * highest-priority ones, then exit. */ + * of the highest-priority ones, then exit. */ #define EVLOOP_NONBLOCK 0x02 /*@}*/