From 65dbd23e3752db9c66ededbbdd5ca99a6036f7db Mon Sep 17 00:00:00 2001 From: asafdav2 Date: Sun, 12 Feb 2017 15:16:52 +0200 Subject: [PATCH] timer: remove duplicated word in comment PR-URL: https://github.com/nodejs/node/pull/11323 Reviewed-By: James M Snell Reviewed-By: Brian White Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Yuta Hiroto Reviewed-By: Timothy Gu --- lib/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timers.js b/lib/timers.js index 6d456da36faf67..3490baa0e5730a 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.