@@ -399,7 +399,7 @@ added: REPLACEME
399399 reached, whichever comes first. **Default:** read until EOF.
400400 * ` chunkSize` {number} Size in bytes of the buffer allocated for each
401401 read operation. **Default:** ` 131072 ` (128 KB).
402- * Returns: {AsyncIterable\< Uint8Array\[ ]> }
402+ * Returns: {AsyncIterable} whose chunks fulfill with { Uint8Array\[ ]}
403403
404404Return the file contents as an async iterable using the
405405[` node: stream/ iter` ][] pull model. Reads are performed in ` chunkSize` -byte
@@ -473,7 +473,7 @@ added: REPLACEME
473473 iterator. **Default:** read until EOF.
474474 * ` chunkSize` {number} Size in bytes of the buffer allocated for each
475475 read operation. **Default:** ` 131072 ` (128 KB).
476- * Returns: {Iterable\< Uint8Array\[ ]> }
476+ * Returns: {Iterable} whose chunks return { Uint8Array\[ ]}
477477
478478Synchronous counterpart of [` filehandle .pull ()` ][]. Returns a sync iterable
479479that reads the file using synchronous I/O on the main thread. Reads are
@@ -9264,7 +9264,7 @@ the file contents.
92649264[` minimatch` ]: https://github.com/isaacs/minimatch
92659265[` node: stream/ iter` ]: stream_iter.md
92669266[` statfs .bsize ` ]: #statfsbsize
9267- [` stream/ iter pipeTo ()` ]: stream_iter.md#pipetosource-transforms-writer
9267+ [` stream/ iter pipeTo ()` ]: stream_iter.md#pipetosource-transforms-writer-options
92689268[` stream/ iter pull ()` ]: stream_iter.md#pullsource-transforms-options
92699269[` stream/ iter pullSync ()` ]: stream_iter.md#pullsyncsource-transforms
92709270[` util .promisify ()` ]: util.md#utilpromisifyoriginal
0 commit comments