Skip to content

Commit 36decec

Browse files
michaelrommelTrott
authored andcommitted
doc: remove superfluous await from fsPromises.readdir example
The `await` operator in the example, iterating over the returned array of filenames is not necessary, since the returned array is either consisting of `string`s or of `fs.Dirent` objects, neither providing an asyncIterator. Refs: nodejs/help#3317 PR-URL: #38293 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent 13d0de5 commit 36decec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ import { readdir } from 'fs/promises';
932932
933933
try {
934934
const files = await readdir(path);
935-
for await (const file of files)
935+
for (const file of files)
936936
console.log(file);
937937
} catch (err) {
938938
console.error(err);

0 commit comments

Comments
 (0)