From bf3f63237c194e26f23aba066d655c989a93ad5e Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Tue, 30 Dec 2025 01:10:46 -0500 Subject: [PATCH] docs: fix typo in multipart/form-data README section (#7311) Co-authored-by: Jay --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 733985c..ffbb9fc 100644 --- a/README.md +++ b/README.md @@ -1098,7 +1098,7 @@ If your backend body-parser (like `body-parser` of `express.js`) supports nested ### FormData -To send the data as a `multipart/formdata` you need to pass a formData instance as a payload. +To send the data as a `multipart/form-data` you need to pass a formData instance as a payload. Setting the `Content-Type` header is not required as Axios guesses it based on the payload type. ```js