From 6668ceebf36b2acb109564ff12c215600a091f55 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 2 May 2024 17:09:19 +1000 Subject: [PATCH] docs(bytes): fix return type description for `concat()` --- bytes/concat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytes/concat.ts b/bytes/concat.ts index 3132cc993b3d..5d1a004678d4 100644 --- a/bytes/concat.ts +++ b/bytes/concat.ts @@ -5,7 +5,7 @@ * Concatenate an array of byte slices into a single slice. * * @param buffers Array of byte slices to concatenate. - * @returns Hello + * @returns A new byte slice containing all the input slices concatenated. * * @example Basic usage * ```ts