From 92808aeab51d4e55047720c6acabf2b7030b765e Mon Sep 17 00:00:00 2001 From: TK-one Date: Wed, 19 Feb 2020 20:16:38 +0900 Subject: [PATCH] src: fix wrong method name in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/2689 Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- src/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer.c b/src/timer.c index 8fce7f64..9da513fc 100644 --- a/src/timer.c +++ b/src/timer.c @@ -87,7 +87,7 @@ int uv_timer_start(uv_timer_t* handle, handle->timer_cb = cb; handle->timeout = clamped_timeout; handle->repeat = repeat; - /* start_id is the second index to be compared in uv__timer_cmp() */ + /* start_id is the second index to be compared in timer_less_than() */ handle->start_id = handle->loop->timer_counter++; heap_insert(timer_heap(handle->loop),