From 889a3b44b31859d0efaa81cae6c681fdcc15109f Mon Sep 17 00:00:00 2001 From: wangzengdi Date: Thu, 29 Mar 2018 09:38:17 +0800 Subject: [PATCH] lib: fix a typo in lib/timers "read through" PR-URL: https://github.com/nodejs/node/pull/19666 Reviewed-By: Vse Mozhet Byt Reviewed-By: Trivikram Kamat --- lib/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timers.js b/lib/timers.js index c82d6cfdbb11e9..4d3f655a1a1271 100644 --- a/lib/timers.js +++ b/lib/timers.js @@ -73,7 +73,7 @@ const TIMEOUT_MAX = 2 ** 31 - 1; // Therefore, it is very important that the timers implementation is performant // and efficient. // -// Note: It is suggested you first read though the lib/internal/linkedlist.js +// Note: It is suggested you first read through the lib/internal/linkedlist.js // linked list implementation, since timers depend on it extensively. It can be // somewhat counter-intuitive at first, as it is not actually a class. Instead, // it is a set of helpers that operate on an existing object.