Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFangshi He <hefangshi@gmail.com>2016-08-23 09:45:49 +0300
committerAnna Henningsen <anna@addaleax.net>2016-08-25 08:23:28 +0300
commite7866568e5a4123d198b45ea13fbd3dd7a3103d9 (patch)
treecb6689e109ea2e7c0a228d2fd22da6825f0f22ad /doc/api/timers.md
parenta60ed89178582628ee38be885babe563c10dd121 (diff)
doc: fix "timout" typo in timeout
Corrected to `timeout` PR-URL: https://github.com/nodejs/node/pull/8231 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com> Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'doc/api/timers.md')
-rw-r--r--doc/api/timers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/timers.md b/doc/api/timers.md
index cd10f4f1356..d698aa9defd 100644
--- a/doc/api/timers.md
+++ b/doc/api/timers.md
@@ -50,9 +50,9 @@ added: v0.9.1
When called, the active `Timeout` object will not require the Node.js event loop
to remain active. If there is no other activity keeping the event loop running,
the process may exit before the `Timeout` object's callback is invoked. Calling
-`timout.unref()` multiple times will have no effect.
+`timeout.unref()` multiple times will have no effect.
-*Note*: Calling `timout.unref()` creates an internal timer that will wake the
+*Note*: Calling `timeout.unref()` creates an internal timer that will wake the
Node.js event loop. Creating too many of these can adversely impact performance
of the Node.js application.