From 45869da1ae6c90da1e70b31cd67e8f65e40d9118 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 --- 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;