From 77872eb55da0852d731a23c02ba41e0ad6727369 Mon Sep 17 00:00:00 2001 From: Ameet Kaustav Date: Mon, 26 Feb 2024 06:14:36 -0700 Subject: [PATCH] doc: change `ExperimentalWarnings` to `ExperimentalWarning` PR-URL: https://github.com/nodejs/node/pull/51741 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Marco Ippolito Reviewed-By: Trivikram Kamat Reviewed-By: Yagiz Nizipli --- 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 1e804ddd4e31a0..41083af5ac4fcf 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -543,7 +543,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';