From 1e4db465202cbe2f9c5661e081582bf2b3d2aaf0 Mon Sep 17 00:00:00 2001 From: Ameet Kaustav Date: Mon, 12 Feb 2024 17:17:17 -0700 Subject: [PATCH] doc: change `ExperimentalWarnings` to `ExperimentalWarning` --- doc/api/cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 4043597b4fbafd..cfd3ebcea2c045 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -545,7 +545,7 @@ For example, the following script will emit the [DEP0025 `require('node:sys')`][DEP0025 warning], but not any Experimental Warnings (such as [ExperimentalWarning: `vm.measureMemory` is an experimental feature][] -in <=v21) when executed with `node --disable-warning=ExperimentalWarnings`: +in <=v21) when executed with `node --disable-warning=ExperimentalWarning`: ```mjs import sys from 'node:sys';