From f353853caf25c6a17af757fc04bf1b51d558b103 Mon Sep 17 00:00:00 2001 From: Dipankar Achinta Date: Thu, 26 Nov 2020 03:06:21 +0530 Subject: [PATCH] Fix typo in ae.c file (#7895) --- src/ae.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ae.c b/src/ae.c index e6f8df877..1c3a4e091 100644 --- a/src/ae.c +++ b/src/ae.c @@ -352,7 +352,7 @@ int aeProcessEvents(aeEventLoop *eventLoop, int flags) /* Nothing to do? return ASAP */ if (!(flags & AE_TIME_EVENTS) && !(flags & AE_FILE_EVENTS)) return 0; - /* Note that we want call select() even if there are no + /* Note that we want to call select() even if there are no * file events to process as long as we want to process time * events, in order to sleep until the next time event is ready * to fire. */