summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-06-30 13:06:38 -0400
committerMichaƫl Zasso <targos@protonmail.com>2019-07-20 11:05:14 +0200
commitec9ba4b80386736ddf65633af97a125ac1fb0578 (patch)
tree9deaf52bd0713e8019a0b68c680a5c8bbbe7fd9c /doc
parent0a0832fb52ab4672a4f6084fdd81a83e19cbc89a (diff)
downloadandroid-node-v8-ec9ba4b80386736ddf65633af97a125ac1fb0578.tar.gz
android-node-v8-ec9ba4b80386736ddf65633af97a125ac1fb0578.tar.bz2
android-node-v8-ec9ba4b80386736ddf65633af97a125ac1fb0578.zip
doc: remove unnecessary stability specifiers
If a top level module is listed as Stable, there is no need to call out individual components of that module as Stable. The extra text is just distracting. PR-URL: https://github.com/nodejs/node/pull/28485 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/dns.md2
-rw-r--r--doc/api/fs.md2
-rw-r--r--doc/api/stream.md2
3 files changed, 0 insertions, 6 deletions
diff --git a/doc/api/dns.md b/doc/api/dns.md
index e70ee40362..a22af1280a 100644
--- a/doc/api/dns.md
+++ b/doc/api/dns.md
@@ -591,8 +591,6 @@ earlier ones time out or result in some other error.
## DNS Promises API
-> Stability: 2 - Stable
-
The `dns.promises` API provides an alternative set of asynchronous DNS methods
that return `Promise` objects rather than using callbacks. The API is accessible
via `require('dns').promises`.
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 50ab633b74..34a1472e42 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -3726,8 +3726,6 @@ this API: [`fs.write(fd, string...)`][].
## fs Promises API
-> Stability: 2 - Stable
-
The `fs.promises` API provides an alternative set of asynchronous file system
methods that return `Promise` objects rather than using callbacks. The
API is accessible via `require('fs').promises`.
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 084117e659..57babaf302 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1319,8 +1319,6 @@ changes:
description: Symbol.asyncIterator support is no longer experimental.
-->
-> Stability: 2 - Stable
-
* Returns: {AsyncIterator} to fully consume the stream.
```js