···116116 builder = builder.header(name, value);
117117 }
118118 let body = resp.bytes().await?.to_vec();
119119- Ok(builder.body(body).expect("response parts came from reqwest"))
119119+ Ok(builder
120120+ .body(body)
121121+ .expect("response parts came from reqwest"))
120122 }
121123}
122124
···8787// RFC1123Z, always utc
8888const formatPatchDate = (input: string): string => {
8989 const date = new Date(input);
9090-// a missing When is go's zero time, formats to this exact string
9090+ // a missing When is go's zero time, formats to this exact string
9191 if (Number.isNaN(date.getTime())) return "Mon, 01 Jan 0001 00:00:00 +0000";
9292 return (
9393 `${WEEKDAYS[date.getUTCDay()]}, ${pad(date.getUTCDate())} ${MONTHS[date.getUTCMonth()]} ` +
···8787 lastOp = op;
8888 }
89899090- // a line without a trailing newline is the patch's "\ No newline"
9191- // marker, only possible at the end of the file
9090+ // a line without a trailing newline is the patch's "\ No newline"
9191+ // marker, only possible at the end of the file
9292 const last = fragment.Lines?.[fragment.Lines.length - 1];
9393 if (last && !last.Line.endsWith("\n")) {
9494 if (last.Op === LineOp.Context) {