diff --git a/doc/api/stream.md b/doc/api/stream.md index c26ab800faf610..7d42bd2d71ca6a 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1740,6 +1740,13 @@ constructor and implement *both* the `readable._read()` and `writable._write()` methods. #### new stream.Duplex(options) + * `options` {Object} Passed to both Writable and Readable constructors. Also has the following fields: diff --git a/doc/api/util.md b/doc/api/util.md index 95d66533b39e31..c853d04716c310 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -150,6 +150,10 @@ property take precedence over `--trace-deprecation` and ## util.format(format[, ...args]) * `format` {string} A `printf`-like format string.