mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
typo (#8998)
This commit is contained in:
parent
f85cd54cb4
commit
e192eda913
1 changed files with 2 additions and 2 deletions
|
@ -354,7 +354,7 @@ export class MultipartReader {
|
|||
}
|
||||
}
|
||||
}
|
||||
return multipatFormData(fileMap, valueMap);
|
||||
return multipartFormData(fileMap, valueMap);
|
||||
}
|
||||
|
||||
private currentPart: PartReader | undefined;
|
||||
|
@ -418,7 +418,7 @@ export class MultipartReader {
|
|||
}
|
||||
}
|
||||
|
||||
function multipatFormData(
|
||||
function multipartFormData(
|
||||
fileMap: Map<string, FormFile | FormFile[]>,
|
||||
valueMap: Map<string, string>,
|
||||
): MultipartFormData {
|
||||
|
|
Loading…
Reference in a new issue