Skip to content

Commit a6b7bce

Browse files
aduh95targos
authored andcommitted
doc: move stability index after history section for consistency
PR-URL: #56997 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
1 parent 7e2dac9 commit a6b7bce

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

doc/api/cli.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -586,14 +586,14 @@ Disable the ability of starting a debugging session by sending a
586586

587587
### `--disable-warning=code-or-type`
588588

589-
> Stability: 1.1 - Active development
590-
591589
<!-- YAML
592590
added:
593591
- v21.3.0
594592
- v20.11.0
595593
-->
596594

595+
> Stability: 1.1 - Active development
596+
597597
Disable specific process warnings by `code` or `type`.
598598

599599
Warnings emitted from [`process.emitWarning()`][emit_warning] may contain a
@@ -795,19 +795,17 @@ node --entry-url 'data:text/javascript,console.log("Hello")'
795795

796796
### `--env-file-if-exists=config`
797797

798-
> Stability: 1.1 - Active development
799-
800798
<!-- YAML
801799
added: v22.9.0
802800
-->
803801

802+
> Stability: 1.1 - Active development
803+
804804
Behavior is the same as [`--env-file`][], but an error is not thrown if the file
805805
does not exist.
806806

807807
### `--env-file=config`
808808

809-
> Stability: 1.1 - Active development
810-
811809
<!-- YAML
812810
added: v20.6.0
813811
changes:
@@ -818,6 +816,8 @@ changes:
818816
description: Add support to multi-line values.
819817
-->
820818

819+
> Stability: 1.1 - Active development
820+
821821
Loads environment variables from a file relative to the current directory,
822822
making them available to applications on `process.env`. The [environment
823823
variables which configure Node.js][environment_variables], such as `NODE_OPTIONS`,

doc/api/inspector.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ const inspector = require('node:inspector');
3131

3232
## Promises API
3333

34-
> Stability: 1 - Experimental
35-
3634
<!-- YAML
3735
added: v19.0.0
3836
-->
3937

38+
> Stability: 1 - Experimental
39+
4040
### Class: `inspector.Session`
4141

4242
* Extends: {EventEmitter}

doc/api/url.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -716,12 +716,12 @@ if `input` is not a valid.
716716

717717
### Class: `URLPattern`
718718

719-
> Stability: 1 - Experimental
720-
721719
<!-- YAML
722720
added: v23.8.0
723721
-->
724722

723+
> Stability: 1 - Experimental
724+
725725
The `URLPattern` API provides an interface to match URLs or parts of URLs
726726
against a pattern.
727727

doc/api/util.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,6 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
366366

367367
## `util.getCallSites(frameCountOrOptions, [options])`
368368

369-
> Stability: 1.1 - Active development
370-
371369
<!-- YAML
372370
added: v22.9.0
373371
changes:
@@ -382,6 +380,8 @@ changes:
382380
description: The API is renamed from `util.getCallSite` to `util.getCallSites()`.
383381
-->
384382

383+
> Stability: 1.1 - Active development
384+
385385
* `frameCount` {number} Optional number of frames to capture as call site objects.
386386
**Default:** `10`. Allowable range is between 1 and 200.
387387
* `options` {Object} Optional
@@ -1721,14 +1721,14 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
17211721
17221722
## `util.parseEnv(content)`
17231723
1724-
> Stability: 1.1 - Active development
1725-
17261724
<!-- YAML
17271725
added:
17281726
- v21.7.0
17291727
- v20.12.0
17301728
-->
17311729
1730+
> Stability: 1.1 - Active development
1731+
17321732
* `content` {string}
17331733
17341734
The raw contents of a `.env` file.
@@ -1922,8 +1922,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));
19221922
19231923
## `util.styleText(format, text[, options])`
19241924
1925-
> Stability: 2 - Stable.
1926-
19271925
<!-- YAML
19281926
added:
19291927
- v21.7.0

0 commit comments

Comments
 (0)