Browse Source

timer: remove duplicated word in comment

PR-URL: https://github.com/nodejs/node/pull/11323
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
v6.x
asafdav2 8 years ago
committed by Myles Borins
parent
commit
b90a141cc7
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 2
      lib/timers.js

2
lib/timers.js

@ -15,7 +15,7 @@ const TIMEOUT_MAX = 2147483647; // 2^31-1
// //
// Timers are crucial to Node.js. Internally, any TCP I/O connection creates a // Timers are crucial to Node.js. Internally, any TCP I/O connection creates a
// timer so that we can time out of connections. Additionally, many user // timer so that we can time out of connections. Additionally, many user
// user libraries and applications also use timers. As such there may be a // libraries and applications also use timers. As such there may be a
// significantly large amount of timeouts scheduled at any given time. // significantly large amount of timeouts scheduled at any given time.
// Therefore, it is very important that the timers implementation is performant // Therefore, it is very important that the timers implementation is performant
// and efficient. // and efficient.

Loading…
Cancel
Save