Skip to content

Commit 919496d

Browse files
committed
wrap doc comment
1 parent e1ecdb5 commit 919496d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Multipart.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ export class Multipart implements Part {
6060
* @param [boundary] The multipart boundary used to separate the parts. Randomly generated if not provided
6161
* @param [mediaType] The media type of the multipart. Defaults to "multipart/mixed"
6262
*
63-
* @throws {RangeError} If the boundary is invalid. A valid boundary is 1 to 70 characters long, does not end with space, and may only contain: A-Z a-z 0-9 '()+_,-./:=? and space
63+
* @throws {RangeError} If the boundary is invalid. A valid boundary is 1 to 70 characters long,
64+
* does not end with space, and may only contain: A-Z a-z 0-9 '()+_,-./:=? and space
6465
*/
6566
public constructor(public readonly parts: Part[], boundary: Uint8Array | string = crypto.randomUUID(), mediaType: string = "multipart/mixed") {
6667
this.#boundary = typeof boundary === "string" ? new TextEncoder().encode(boundary) : boundary;

0 commit comments

Comments
 (0)