diff --git a/doc/api/dns.md b/doc/api/dns.md index b448d7d67520a7..35beb8c59771ee 100644 --- a/doc/api/dns.md +++ b/doc/api/dns.md @@ -664,6 +664,15 @@ subsequent servers provided. Fallback DNS servers will only be used if the earlier ones time out or result in some other error. ## DNS promises API + The `dns.promises` API provides an alternative set of asynchronous DNS methods that return `Promise` objects rather than using callbacks. The API is accessible diff --git a/doc/api/fs.md b/doc/api/fs.md index e64d70d6da81fc..e0e8960e7f3a26 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -4666,6 +4666,21 @@ For detailed information, see the documentation of the asynchronous version of this API: [`fs.writev()`][]. ## `fs` Promises API + The `fs.promises` API provides an alternative set of asynchronous file system methods that return `Promise` objects rather than using callbacks. The