From b90a141cc7c1fb0956bee728c47a30992f7a5d91 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 28fa6a4cfb2fba..0784f7f1e11247 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.