From 6ba9249e49e5eafe164beae46996161a3950def4 Mon Sep 17 00:00:00 2001 From: Henning Westerholt Date: Tue, 11 Jan 2022 15:10:30 +0000 Subject: [PATCH] evapi: small spelling fix in comment --- src/modules/evapi/evapi_dispatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evapi/evapi_dispatch.c b/src/modules/evapi/evapi_dispatch.c index 1b8bff44026..6249fc869ab 100644 --- a/src/modules/evapi/evapi_dispatch.c +++ b/src/modules/evapi/evapi_dispatch.c @@ -578,7 +578,7 @@ void evapi_accept_client(struct ev_loop *loop, struct ev_io *watcher, int revent return; } - /* start watcher to read messages from whatchers */ + /* start watcher to read messages from watchers */ ev_io_init(evapi_client, evapi_recv_client, csock, EV_READ); ev_io_start(loop, evapi_client); }