summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2018-03-25 12:01:33 +0200
committerTrivikram <16024985+trivikr@users.noreply.github.com>2018-03-25 10:10:10 -0700
commite821071920f60645c23afacbb99244b8d8757064 (patch)
tree455d9b7ab5a07e390e7197fa6a3f349cdbc01fdf /doc
parente3359c6b75293b0deb3687d9b69cfbc950e6e5a8 (diff)
downloadandroid-node-v8-e821071920f60645c23afacbb99244b8d8757064.tar.gz
android-node-v8-e821071920f60645c23afacbb99244b8d8757064.tar.bz2
android-node-v8-e821071920f60645c23afacbb99244b8d8757064.zip
doc: add 'v' prefix to all versions in metadata
PR-URL: https://github.com/nodejs/node/pull/19590 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
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.