summaryrefslogtreecommitdiff
path: root/doc/api/globals.md
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-10-02 00:31:57 -0400
committerRich Trott <rtrott@gmail.com>2019-10-03 22:57:33 -0700
commit24011de9071fcd092fab29719d3fa8269a95288a (patch)
tree47241142f5cc13c3dbf3f6bf1fdd94984b732edd /doc/api/globals.md
parent24d43ca1b1d65c95f22a14197350e0803adf918b (diff)
downloadandroid-node-v8-24011de9071fcd092fab29719d3fa8269a95288a.tar.gz
android-node-v8-24011de9071fcd092fab29719d3fa8269a95288a.tar.bz2
android-node-v8-24011de9071fcd092fab29719d3fa8269a95288a.zip
doc: add explicit bracket for markdown reference links
Use explicit trailing `[]` for reference markdown links to prevent implicit links when references are added to documents. PR-URL: https://github.com/nodejs/node/pull/29808 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc/api/globals.md')
-rw-r--r--doc/api/globals.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/api/globals.md b/doc/api/globals.md
index f3263c22e7..89592b98e1 100644
--- a/doc/api/globals.md
+++ b/doc/api/globals.md
@@ -30,11 +30,11 @@ Used to handle binary data. See the [buffer section][].
## \_\_dirname
-This variable may appear to be global but is not. See [`__dirname`].
+This variable may appear to be global but is not. See [`__dirname`][].
## \_\_filename
-This variable may appear to be global but is not. See [`__filename`].
+This variable may appear to be global but is not. See [`__filename`][].
## clearImmediate(immediateObject)
<!-- YAML
@@ -43,7 +43,7 @@ added: v0.9.1
<!--type=global-->
-[`clearImmediate`] is described in the [timers][] section.
+[`clearImmediate`][] is described in the [timers][] section.
## clearInterval(intervalObject)
<!-- YAML
@@ -52,7 +52,7 @@ added: v0.0.1
<!--type=global-->
-[`clearInterval`] is described in the [timers][] section.
+[`clearInterval`][] is described in the [timers][] section.
## clearTimeout(timeoutObject)
<!-- YAML
@@ -61,7 +61,7 @@ added: v0.0.1
<!--type=global-->
-[`clearTimeout`] is described in the [timers][] section.
+[`clearTimeout`][] is described in the [timers][] section.
## console
<!-- YAML
@@ -76,7 +76,7 @@ Used to print to stdout and stderr. See the [`console`][] section.
## exports
-This variable may appear to be global but is not. See [`exports`].
+This variable may appear to be global but is not. See [`exports`][].
## global
<!-- YAML
@@ -94,7 +94,7 @@ Node.js this is different. The top-level scope is not the global scope;
## module
-This variable may appear to be global but is not. See [`module`].
+This variable may appear to be global but is not. See [`module`][].
## process
<!-- YAML
@@ -148,7 +148,7 @@ DataHandler.prototype.load = async function load(key) {
## require()
-This variable may appear to be global but is not. See [`require()`].
+This variable may appear to be global but is not. See [`require()`][].
## setImmediate(callback[, ...args])
<!-- YAML
@@ -157,7 +157,7 @@ added: v0.9.1
<!-- type=global -->
-[`setImmediate`] is described in the [timers][] section.
+[`setImmediate`][] is described in the [timers][] section.
## setInterval(callback, delay[, ...args])
<!-- YAML
@@ -166,7 +166,7 @@ added: v0.0.1
<!-- type=global -->
-[`setInterval`] is described in the [timers][] section.
+[`setInterval`][] is described in the [timers][] section.
## setTimeout(callback, delay[, ...args])
<!-- YAML
@@ -175,7 +175,7 @@ added: v0.0.1
<!-- type=global -->
-[`setTimeout`] is described in the [timers][] section.
+[`setTimeout`][] is described in the [timers][] section.
## TextDecoder
<!-- YAML