Skip to content

Commit 2ec0507

Browse files
committed
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 0db112b commit 2ec0507

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
@@ -579,14 +579,14 @@ Disable the ability of starting a debugging session by sending a
579579

580580
### `--disable-warning=code-or-type`
581581

582-
> Stability: 1.1 - Active development
583-
584582
<!-- YAML
585583
added:
586584
- v21.3.0
587585
- v20.11.0
588586
-->
589587

588+
> Stability: 1.1 - Active development
589+
590590
Disable specific process warnings by `code` or `type`.
591591

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

785785
### `--env-file-if-exists=config`
786786

787-
> Stability: 1.1 - Active development
788-
789787
<!-- YAML
790788
added: v22.9.0
791789
-->
792790

791+
> Stability: 1.1 - Active development
792+
793793
Behavior is the same as [`--env-file`][], but an error is not thrown if the file
794794
does not exist.
795795

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

798-
> Stability: 1.1 - Active development
799-
800798
<!-- YAML
801799
added: v20.6.0
802800
changes:
@@ -807,6 +805,8 @@ changes:
807805
description: Add support to multi-line values.
808806
-->
809807

808+
> Stability: 1.1 - Active development
809+
810810
Loads environment variables from a file relative to the current directory,
811811
making them available to applications on `process.env`. The [environment
812812
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:
@@ -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
@@ -1719,14 +1719,14 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
17191719
17201720
## `util.parseEnv(content)`
17211721
1722-
> Stability: 1.1 - Active development
1723-
17241722
<!-- YAML
17251723
added:
17261724
- v21.7.0
17271725
- v20.12.0
17281726
-->
17291727
1728+
> Stability: 1.1 - Active development
1729+
17301730
* `content` {string}
17311731
17321732
The raw contents of a `.env` file.
@@ -1920,8 +1920,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));
19201920
19211921
## `util.styleText(format, text[, options])`
19221922
1923-
> Stability: 2 - Stable.
1924-
19251923
<!-- YAML
19261924
added:
19271925
- v21.7.0

0 commit comments

Comments
 (0)