diff --git a/_tools/check_docs.ts b/_tools/check_docs.ts index 9de562214..c675cc8b1 100644 --- a/_tools/check_docs.ts +++ b/_tools/check_docs.ts @@ -307,6 +307,9 @@ function assertFunctionDocs( if (param.kind === "identifier") { assertHasParamTag(document, param.name); } + if (param.kind === "rest" && param.arg.kind === "identifier") { + assertHasParamTag(document, param.arg.name); + } if (param.kind === "assign" && param.left.kind === "identifier") { assertHasParamTag(document, param.left.name); } diff --git a/streams/early_zip_readable_streams.ts b/streams/early_zip_readable_streams.ts index c7e93a865..8bedf652e 100644 --- a/streams/early_zip_readable_streams.ts +++ b/streams/early_zip_readable_streams.ts @@ -12,6 +12,7 @@ * even after one of them ends, use {@linkcode zipReadableStreams}. * * @typeparam T The type of the chunks in the input streams. + * @param streams An iterable of `ReadableStream`s to merge. * @returns A `ReadableStream` that will emit the zipped chunks * * @example Zip 2 streams with the same length diff --git a/streams/zip_readable_streams.ts b/streams/zip_readable_streams.ts index 4a85ddcfc..1e976f4c1 100644 --- a/streams/zip_readable_streams.ts +++ b/streams/zip_readable_streams.ts @@ -11,6 +11,7 @@ * the other streams when one of them ends, use {@linkcode earlyZipReadableStreams}. * * @typeparam T The type of the chunks in the input/output streams. + * @param streams An iterable of `ReadableStream`s to merge. * @returns A `ReadableStream` that will emit the zipped chunks. * * @example Zip 2 streams with the same length