docs(bytes): fix return type description for concat() (#4668)

This commit is contained in:
Asher Gomez 2024-05-02 17:47:21 +10:00 committed by GitHub
parent b884c7ce73
commit 786a013e7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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