diff --git a/doc/api/stream.md b/doc/api/stream.md index 141d3d7b7e1954..26771f9e62e5c6 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2229,7 +2229,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 @@ -2279,7 +2279,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 @@ -2327,7 +2327,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);