Skip to content

Commit

Permalink
typo (#8998)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaimallea authored Jan 5, 2021
1 parent f85cd54 commit e192eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/mime/multipart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export class MultipartReader {
}
}
}
return multipatFormData(fileMap, valueMap);
return multipartFormData(fileMap, valueMap);
}

private currentPart: PartReader | undefined;
Expand Down Expand Up @@ -418,7 +418,7 @@ export class MultipartReader {
}
}

function multipatFormData(
function multipartFormData(
fileMap: Map<string, FormFile | FormFile[]>,
valueMap: Map<string, string>,
): MultipartFormData {
Expand Down

0 comments on commit e192eda

Please sign in to comment.