@@ -71,15 +71,15 @@ Note that `decodeAsync()` acceps the same options as `decode()`.
71
71
72
72
### ` decodeArrayStream(stream: AsyncIterable<Uint8Array | ArrayLike<number>> | ReadableStream<Uint8Array | ArrayLike<number>>, options?: DecodeAsyncOptions): AsyncIterable<unknown> `
73
73
74
- It is alike to ` decodeAsync() ` , but only accepts an array of items as ` stream ` , and emits the decoded item one-by- one.
74
+ It is alike to ` decodeAsync() ` , but only accepts an array of items as the input ` stream ` , and emits the decoded item one by one.
75
75
76
76
It throws errors when the input is not an array.
77
77
78
78
### ` decodeStream(stream: AsyncIterable<Uint8Array | ArrayLike<number>> | ReadableStream<Uint8Array | ArrayLike<number>>, options?: DecodeAsyncOptions): AsyncIterable<unknown> `
79
79
80
- It is like to ` decodeAsync() ` and ` decodeArrayStream() ` , but the input consists of independent MessagePack items.
80
+ It is like to ` decodeAsync() ` and ` decodeArrayStream() ` , but the input ` stream ` consists of independent MessagePack items.
81
81
82
- In other words, it decodes an unlimited stream and emits an item one-by- one.
82
+ In other words, it decodes an unlimited stream and emits an item one by one.
83
83
84
84
### Extension Types
85
85
0 commit comments