Skip to content

Commit 9d39205

Browse files
kuhetrivikr
andauthored
Update packages/node-http-handler/src/stream-collector/index.ts
Co-authored-by: Trivikram Kamat <[email protected]>
1 parent ccb4267 commit 9d39205

File tree

1 file changed

+1
-1
lines changed
  • packages/node-http-handler/src/stream-collector

1 file changed

+1
-1
lines changed

packages/node-http-handler/src/stream-collector/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Collector } from "./collector";
55

66
export const streamCollector: StreamCollector = (stream: Readable | ReadableStream): Promise<Uint8Array> => {
77
if (isReadableStreamInstance(stream)) {
8-
// web stream in Node.js indicates user has overridden requestHandler with FetchHttpHandler.
8+
// Web stream API in Node.js
99
return collectReadableStream(stream);
1010
}
1111
return new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)