diff --git a/lib/timers.js b/lib/timers.js index 917db9bdc5acea..84da1c325b93a6 100644 --- a/lib/timers.js +++ b/lib/timers.js @@ -107,7 +107,7 @@ const TIMEOUT_MAX = 2147483647; // 2^31-1 // timeout later, thus only needing to be appended. // Removal from an object-property linked list is also virtually constant-time // as can be seen in the lib/internal/linkedlist.js implementation. -// Timeouts only need to process any timers due to currently timeout, which will +// Timeouts only need to process any timers currently due to expire, which will // always be at the beginning of the list for reasons stated above. Any timers // after the first one encountered that does not yet need to timeout will also // always be due to timeout at a later time.