Improve aeDeleteEventLoop() top comment grammar.

This commit is contained in:
antirez 2020-02-27 17:41:48 +01:00
parent e77db59660
commit d8ab7e8012

View File

@ -135,7 +135,8 @@ void aeDeleteEventLoop(aeEventLoop *eventLoop) {
aeApiFree(eventLoop); aeApiFree(eventLoop);
zfree(eventLoop->events); zfree(eventLoop->events);
zfree(eventLoop->fired); zfree(eventLoop->fired);
/* Free time event. */
/* Free the time events list. */
aeTimeEvent *next_te, *te = eventLoop->timeEventHead; aeTimeEvent *next_te, *te = eventLoop->timeEventHead;
while (te) { while (te) {
next_te = te->next; next_te = te->next;