From 065584a27db90d3da537e2e751744da8f44bbb5c Mon Sep 17 00:00:00 2001 From: Nazar <56857821+nnakapeliukh@users.noreply.github.com> Date: Sun, 18 Feb 2024 18:16:26 -0600 Subject: [PATCH] Update README.md Corrects missing "in" in a sentence. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc5702a3..8d1096a8 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ app.post('/profile', upload.none(), function (req, res, next) { }) ``` -Here's an example on how multer is used an HTML form. Take special note of the `enctype="multipart/form-data"` and `name="uploaded_file"` fields: +Here's an example on how multer is used in an HTML form. Take special note of the `enctype="multipart/form-data"` and `name="uploaded_file"` fields: ```html