From d92c5d1314f1ad79e92363bd6662be7581ffede0 Mon Sep 17 00:00:00 2001 From: Evgeny Ermakov Date: Thu, 30 May 2019 02:08:26 +1100 Subject: [PATCH] unix: fix a comment typo in signal.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/2318 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Vladimír Čunát --- src/unix/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/signal.c b/src/unix/signal.c index 01aa55f3..5e89ded2 100644 --- a/src/unix/signal.c +++ b/src/unix/signal.c @@ -375,7 +375,7 @@ static int uv__signal_start(uv_signal_t* handle, /* Short circuit: if the signal watcher is already watching {signum} don't * go through the process of deregistering and registering the handler. - * Additionally, this avoids pending signals getting lost in the small time + * Additionally, this avoids pending signals getting lost in the small * time frame that handle->signum == 0. */ if (signum == handle->signum) {