summaryrefslogtreecommitdiff
path: root/lib/timers.js
diff options
context:
space:
mode:
authorasafdav2 <asafdav2@gmail.com>2017-02-12 15:16:52 +0200
committerYuta Hiroto <git@about-hiroppy.com>2017-02-13 08:17:57 +0900
commitb2a77654b7761e6708844611d0464797211e52f4 (patch)
treee2b775fb73b9bc27a8510dcc20ec11421de9d066 /lib/timers.js
parent4cafa60c99f0d755b1df3a29357e19a92b97eed8 (diff)
downloadandroid-node-v8-b2a77654b7761e6708844611d0464797211e52f4.tar.gz
android-node-v8-b2a77654b7761e6708844611d0464797211e52f4.tar.bz2
android-node-v8-b2a77654b7761e6708844611d0464797211e52f4.zip
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>
Diffstat (limited to 'lib/timers.js')
-rw-r--r--lib/timers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timers.js b/lib/timers.js
index 6d456da36f..3490baa0e5 100644
--- a/lib/timers.js
+++ b/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
// 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.
// Therefore, it is very important that the timers implementation is performant
// and efficient.