summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwangzengdi <sunnyadi@163.com>2018-03-29 09:38:17 +0800
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2018-12-04 15:32:46 +0000
commit8afbd5ce41a05a68eaa879699160741435fe0be0 (patch)
treeb5225dd6d4b7ad9300e7040b23703153ffff3d07
parent17e84217c724781a476325dd7cdf10d3bd4d0fc4 (diff)
downloadnode-new-8afbd5ce41a05a68eaa879699160741435fe0be0.tar.gz
lib: fix a typo in lib/timers "read through"
PR-URL: https://github.com/nodejs/node/pull/19666 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
-rw-r--r--lib/timers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timers.js b/lib/timers.js
index e6655c2f52..5631878dc2 100644
--- a/lib/timers.js
+++ b/lib/timers.js
@@ -66,7 +66,7 @@ const TIMEOUT_MAX = 2147483647; // 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.