From 59769c4d14f534abd65d1bd8b5e30ab84c164af5 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 8 May 2020 08:21:50 +0200 Subject: [PATCH] lib: fix typo in timers insert function comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/33301 Reviewed-By: Zeyu Yang Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott Reviewed-By: Ruben Bridgewater --- lib/internal/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/timers.js b/lib/internal/timers.js index bb80f57ee295c5..1577e31779ddc6 100644 --- a/lib/internal/timers.js +++ b/lib/internal/timers.js @@ -338,7 +338,7 @@ function insertGuarded(item, refed, start) { } function insert(item, msecs, start = getLibuvNow()) { - // Truncate so that accuracy of sub-milisecond timers is not assumed. + // Truncate so that accuracy of sub-millisecond timers is not assumed. msecs = MathTrunc(msecs); item._idleStart = start;