Skip to content

Commit f07e820

Browse files
tniessentargos
authored andcommitted
doc: add 'v' prefix to all versions in metadata
PR-URL: #19590 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent c1a327b commit f07e820

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/api/buffer.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2534,15 +2534,15 @@ console.log(buf);
25342534

25352535
## Buffer Constants
25362536
<!-- YAML
2537-
added: 8.2.0
2537+
added: v8.2.0
25382538
-->
25392539

25402540
Note that `buffer.constants` is a property on the `buffer` module returned by
25412541
`require('buffer')`, not on the `Buffer` global or a `Buffer` instance.
25422542

25432543
### buffer.constants.MAX_LENGTH
25442544
<!-- YAML
2545-
added: 8.2.0
2545+
added: v8.2.0
25462546
-->
25472547

25482548
* {integer} The largest size allowed for a single `Buffer` instance.
@@ -2554,7 +2554,7 @@ This value is also available as [`buffer.kMaxLength`][].
25542554

25552555
### buffer.constants.MAX_STRING_LENGTH
25562556
<!-- YAML
2557-
added: 8.2.0
2557+
added: v8.2.0
25582558
-->
25592559

25602560
* {integer} The largest length allowed for a single `string` instance.

doc/api/cluster.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ changes:
704704
- version: v9.4.0
705705
pr-url: https://github.com/nodejs/node/pull/17412
706706
description: The `windowsHide` option is supported now.
707-
- version: 8.2.0
707+
- version: v8.2.0
708708
pr-url: https://github.com/nodejs/node/pull/14140
709709
description: The `inspectPort` option is supported now.
710710
- version: v6.4.0

doc/api/console.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ undefined
241241
<!-- YAML
242242
added: v8.0.0
243243
changes:
244-
- version: 9.3.0
244+
- version: v9.3.0
245245
pr-url: https://github.com/nodejs/node/pull/17033
246246
description: "`console.debug` is now an alias for `console.log`."
247247
-->
@@ -280,7 +280,7 @@ Defaults to `false`. Colors are customizable; see
280280
<!-- YAML
281281
added: v8.0.0
282282
changes:
283-
- version: 9.3.0
283+
- version: v9.3.0
284284
pr-url: https://github.com/nodejs/node/pull/17152
285285
description: "`console.dirxml` now calls `console.log` for its arguments."
286286
-->

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ Emitted when the `fs.ReadStream`'s file descriptor has been opened.
366366

367367
### readStream.bytesRead
368368
<!-- YAML
369-
added: 6.4.0
369+
added: v6.4.0
370370
-->
371371

372372
* Value: {number}

doc/api/process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ Would generate the output:
468468

469469
## process.argv0
470470
<!-- YAML
471-
added: 6.4.0
471+
added: v6.4.0
472472
-->
473473

474474
* {string}
@@ -694,7 +694,7 @@ module.exports.foo();
694694

695695
## process.emitWarning(warning[, options])
696696
<!-- YAML
697-
added: 8.0.0
697+
added: v8.0.0
698698
-->
699699

700700
* `warning` {string|Error} The warning to emit.

0 commit comments

Comments
 (0)