summaryrefslogtreecommitdiff
path: root/doc/api/globals.md
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2017-01-24 11:37:46 -0800
committerSam Roberts <vieuxtech@gmail.com>2017-01-27 14:23:33 -0800
commit38161f0a955011add889c63e93609abb0974dc3e (patch)
treeb7a491c960e3ada00c6a7a825b071341b43fc237 /doc/api/globals.md
parent4f1e235f2aaf6320b899f5a530903ed2c4c7163b (diff)
downloadnode-new-38161f0a955011add889c63e93609abb0974dc3e.tar.gz
doc: for style, remove "isn't" contraction
PR-URL: https://github.com/nodejs/node/pull/10981 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/api/globals.md')
-rw-r--r--doc/api/globals.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/globals.md b/doc/api/globals.md
index 9154e54beb..4ce4f479f6 100644
--- a/doc/api/globals.md
+++ b/doc/api/globals.md
@@ -32,7 +32,7 @@ added: v0.1.27
The directory name of the current module. This the same as the
[`path.dirname()`][] of the [`__filename`][].
-`__dirname` isn't actually a global but rather local to each module.
+`__dirname` is not actually a global but rather local to each module.
Example: running `node example.js` from `/Users/mjr`
@@ -60,7 +60,7 @@ command line.
See [`__dirname`][] for the directory name of the current module.
-`__filename` isn't actually a global but rather local to each module.
+`__filename` is not actually a global but rather local to each module.
Examples:
@@ -132,7 +132,7 @@ A reference to the `module.exports` that is shorter to type.
See [module system documentation][] for details on when to use `exports` and
when to use `module.exports`.
-`exports` isn't actually a global but rather local to each module.
+`exports` is not actually a global but rather local to each module.
See the [module system documentation][] for more information.
@@ -163,7 +163,7 @@ A reference to the current module. In particular
`module.exports` is used for defining what a module exports and makes
available through `require()`.
-`module` isn't actually a global but rather local to each module.
+`module` is not actually a global but rather local to each module.
See the [module system documentation][] for more information.
@@ -187,7 +187,7 @@ added: v0.1.13
* {Function}
-To require modules. See the [Modules][] section. `require` isn't actually a
+To require modules. See the [Modules][] section. `require` is not actually a
global but rather local to each module.
### require.cache