summaryrefslogtreecommitdiff
path: root/std/mime/multipart.ts
diff options
context:
space:
mode:
authorMarcos Casagrande <marcoscvp90@gmail.com>2020-05-17 12:31:19 +0200
committerGitHub <noreply@github.com>2020-05-17 12:31:19 +0200
commit4d3bcd807df3e60dc30b891d6efe896711f8cad3 (patch)
treeb20ae303b9ed482071d5ab7a9607ea3b764161f1 /std/mime/multipart.ts
parentc4f356bda5409071d32202f04e62530e0e31cd93 (diff)
docs(std): Fix default value in comment (#5539)
Diffstat (limited to 'std/mime/multipart.ts')
-rw-r--r--std/mime/multipart.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/mime/multipart.ts b/std/mime/multipart.ts
index cca233f68..abe46f820 100644
--- a/std/mime/multipart.ts
+++ b/std/mime/multipart.ts
@@ -279,7 +279,7 @@ export class MultipartReader {
* overflowed file data will be written to temporal files.
* String field values are never written to files.
* null value means parsing or writing to file was failed in some reason.
- * @param maxMemory maximum memory size to store file in memory. bytes. @default 1048576 (1MB)
+ * @param maxMemory maximum memory size to store file in memory. bytes. @default 10485760 (10MB)
* */
async readForm(maxMemory = 10 << 20): Promise<MultipartFormData> {
const fileMap = new Map<string, FormFile>();