From 2f5ae4bf4c143c2e12b56cd2c3707abe5dbe4a06 Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Fri, 24 Apr 2026 03:05:16 +0900 Subject: [PATCH] doc: fix doubled word typo in stream_iter.md --- doc/api/stream_iter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream_iter.md b/doc/api/stream_iter.md index 735524078f9db5..55b7d0a70240b8 100644 --- a/doc/api/stream_iter.md +++ b/doc/api/stream_iter.md @@ -1840,7 +1840,7 @@ console.log(ready); // Promise { true } -- no backpressure * Value: `Symbol.for('Stream.shareProtocol')` The value must be a function. When called by `Share.from()`, it receives the -options passed to `Share.from()` and must return an object conforming the the +options passed to `Share.from()` and must return an object conforming to the {Share} interface. The implementation is fully custom -- it can manage the shared source, consumers, buffering, and backpressure however it wants.