summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/buffer.md6
-rw-r--r--doc/api/cluster.md2
-rw-r--r--doc/api/console.md4
-rw-r--r--doc/api/fs.md2
-rw-r--r--doc/api/process.md4
5 files changed, 9 insertions, 9 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 750d112737..120f63ad5c 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -2574,7 +2574,7 @@ console.log(buf);
## Buffer Constants
<!-- YAML
-added: 8.2.0
+added: v8.2.0
-->
Note that `buffer.constants` is a property on the `buffer` module returned by
@@ -2582,7 +2582,7 @@ Note that `buffer.constants` is a property on the `buffer` module returned by
### buffer.constants.MAX_LENGTH
<!-- YAML
-added: 8.2.0
+added: v8.2.0
-->
* {integer} The largest size allowed for a single `Buffer` instance.
@@ -2594,7 +2594,7 @@ This value is also available as [`buffer.kMaxLength`][].
### buffer.constants.MAX_STRING_LENGTH
<!-- YAML
-added: 8.2.0
+added: v8.2.0
-->
* {integer} The largest length allowed for a single `string` instance.
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index f6ab70cb63..09558d299e 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -704,7 +704,7 @@ changes:
- version: v9.4.0
pr-url: https://github.com/nodejs/node/pull/17412
description: The `windowsHide` option is supported now.
- - version: 8.2.0
+ - version: v8.2.0
pr-url: https://github.com/nodejs/node/pull/14140
description: The `inspectPort` option is supported now.
- version: v6.4.0
diff --git a/doc/api/console.md b/doc/api/console.md
index 1bd595f4b9..55adfc1e83 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -203,7 +203,7 @@ undefined
<!-- YAML
added: v8.0.0
changes:
- - version: 9.3.0
+ - version: v9.3.0
pr-url: https://github.com/nodejs/node/pull/17033
description: "`console.debug` is now an alias for `console.log`."
-->
@@ -242,7 +242,7 @@ Defaults to `false`. Colors are customizable; see
<!-- YAML
added: v8.0.0
changes:
- - version: 9.3.0
+ - version: v9.3.0
pr-url: https://github.com/nodejs/node/pull/17152
description: "`console.dirxml` now calls `console.log` for its arguments."
-->
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 2b1b622d04..7fae40c9df 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -365,7 +365,7 @@ Emitted when the `fs.ReadStream`'s file descriptor has been opened.
### readStream.bytesRead
<!-- YAML
-added: 6.4.0
+added: v6.4.0
-->
* Value: {number}
diff --git a/doc/api/process.md b/doc/api/process.md
index c737f7d456..facc19e4f8 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -468,7 +468,7 @@ Would generate the output:
## process.argv0
<!-- YAML
-added: 6.4.0
+added: v6.4.0
-->
* {string}
@@ -694,7 +694,7 @@ module.exports.foo();
## process.emitWarning(warning[, options])
<!-- YAML
-added: 8.0.0
+added: v8.0.0
-->
* `warning` {string|Error} The warning to emit.