Skip to content

Commit 25b4a5d

Browse files
authored
doc: move stability index after history section for consistency
PR-URL: #56997 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Ulises Gascón <[email protected]>
1 parent 85f5a6c commit 25b4a5d

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

doc/api/cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -592,14 +592,14 @@ Disable the ability of starting a debugging session by sending a
592592

593593
### `--disable-warning=code-or-type`
594594

595-
> Stability: 1.1 - Active development
596-
597595
<!-- YAML
598596
added:
599597
- v21.3.0
600598
- v20.11.0
601599
-->
602600

601+
> Stability: 1.1 - Active development
602+
603603
Disable specific process warnings by `code` or `type`.
604604

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

803803
### `--env-file-if-exists=config`
804804

805-
> Stability: 1.1 - Active development
806-
807805
<!-- YAML
808806
added: v22.9.0
809807
-->
810808

809+
> Stability: 1.1 - Active development
810+
811811
Behavior is the same as [`--env-file`][], but an error is not thrown if the file
812812
does not exist.
813813

814814
### `--env-file=config`
815815

816-
> Stability: 1.1 - Active development
817-
818816
<!-- YAML
819817
added: v20.6.0
820818
changes:
@@ -825,6 +823,8 @@ changes:
825823
description: Add support to multi-line values.
826824
-->
827825

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

doc/api/inspector.md

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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: REPLACEME
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

Lines changed: 4 additions & 6 deletions
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:
@@ -388,6 +386,8 @@ changes:
388386
description: The API is renamed from `util.getCallSite` to `util.getCallSites()`.
389387
-->
390388

389+
> Stability: 1.1 - Active development
390+
391391
* `frameCount` {number} Optional number of frames to capture as call site objects.
392392
**Default:** `10`. Allowable range is between 1 and 200.
393393
* `options` {Object} Optional
@@ -1729,14 +1729,14 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
17291729
17301730
## `util.parseEnv(content)`
17311731
1732-
> Stability: 1.1 - Active development
1733-
17341732
<!-- YAML
17351733
added:
17361734
- v21.7.0
17371735
- v20.12.0
17381736
-->
17391737
1738+
> Stability: 1.1 - Active development
1739+
17401740
* `content` {string}
17411741
17421742
The raw contents of a `.env` file.
@@ -1930,8 +1930,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));
19301930
19311931
## `util.styleText(format, text[, options])`
19321932
1933-
> Stability: 2 - Stable.
1934-
19351933
<!-- YAML
19361934
added:
19371935
- v21.7.0

0 commit comments

Comments
 (0)