From 8e947a9a940ddf77fd62771f364938bccbf64943 Mon Sep 17 00:00:00 2001 From: freyavs Date: Thu, 3 Sep 2020 15:31:45 +0200 Subject: [PATCH] add suggested change --- src/util/Util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Util.ts b/src/util/Util.ts index 1505c1b665..40ff5d6700 100644 --- a/src/util/Util.ts +++ b/src/util/Util.ts @@ -59,7 +59,7 @@ export const matchingMediaType = (mediaA: string, mediaB: string): boolean => { * @param readable - Initial readable stream. * @param destination - The destination for writing data. * - * @returns destination as a Readable. + * @returns The destination stream. */ export const pipeStreamsAndErrors = (readable: Readable, destination: T): T => { readable.pipe(destination);