diff --git a/doc/api/stream.md b/doc/api/stream.md index dd28f15a2b711f2..d3719dc640f6c8d 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2239,7 +2239,7 @@ const anyBigFile = await Readable.from([ 'file3', ]).some(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); console.log(anyBigFile); // `true` if any file in the list is bigger than 1MB console.log('done'); // Stream has finished @@ -2291,7 +2291,7 @@ const foundBigFile = await Readable.from([ 'file3', ]).find(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); console.log(foundBigFile); // File name of large file, if any file in the list is bigger than 1MB console.log('done'); // Stream has finished @@ -2341,7 +2341,7 @@ const allBigFiles = await Readable.from([ 'file3', ]).every(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); // `true` if all files in the list are bigger than 1MiB console.log(allBigFiles);