From e638bc5f92ec4396157e9aa728d66b9881d7c9fe Mon Sep 17 00:00:00 2001 From: Chakravarthy S M Date: Fri, 7 Sep 2018 16:00:38 +0530 Subject: [PATCH] doc: fix typo in CHANGELOG_V10.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo PR-URL: https://github.com/nodejs/node/pull/22744 Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Yuta Hiroto Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Gus Caplan --- doc/changelogs/CHANGELOG_V10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/changelogs/CHANGELOG_V10.md b/doc/changelogs/CHANGELOG_V10.md index 572f5d1f145..09c47034c9b 100644 --- a/doc/changelogs/CHANGELOG_V10.md +++ b/doc/changelogs/CHANGELOG_V10.md @@ -60,7 +60,7 @@ * The methods `fs.read`, `fs.readSync`, `fs.write`, `fs.writeSync`, `fs.writeFile` and `fs.writeFileSync` now all accept `TypedArray` and `DataView` objects. [#22150](https://github.com/nodejs/node/pull/22150) - * A new boolean option, `withFileTypes`, can be passed to to `fs.readdir` and + * A new boolean option, `withFileTypes`, can be passed to `fs.readdir` and `fs.readdirSync`. If set to true, the methods return an array of directory entries. These are objects that can be used to determine the type of each entry and filter them based on that without calling `fs.stat`. [#22020](https://github.com/nodejs/node/pull/22020)