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:
authoryorkie <yorkiefixer@gmail.com>2016-09-11 04:42:00 +0300
committerJames M Snell <jasnell@gmail.com>2016-09-12 07:35:31 +0300
commitebaa69baf67767476c93b90ecbbebd0a0585fd1b (patch)
tree7a7233054eb22eb826b36a7a6f900089f2836c1a /doc/api/timers.md
parent63493e1cb3d64dd0b7672039a05855ee6178b549 (diff)
doc: fix link on timers.md
PR-URL: https://github.com/nodejs/node/pull/8488 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/timers.md')
-rw-r--r--doc/api/timers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/timers.md b/doc/api/timers.md
index d698aa9defd..e356d2d672d 100644
--- a/doc/api/timers.md
+++ b/doc/api/timers.md
@@ -22,7 +22,7 @@ This object is created internally and is returned from [`setTimeout()`][] and
[`setInterval()`][]. It can be passed to [`clearTimeout`][] or
[`clearInterval()`][] (respectively) in order to cancel the scheduled actions.
-By default, when a timer is scheduled using either [`setTimeout`] or
+By default, when a timer is scheduled using either [`setTimeout()`][] or
[`setInterval()`][], the Node.js event loop will continue running as long as the
timer is active. Each of the `Timeout` objects returned by these functions
export both `timeout.ref()` and `timeout.unref()` functions that can be used to