From 1e04a5c2fc07a4af17672e89e527ea280fa7cc2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Wed, 27 Sep 2023 20:57:52 +0200 Subject: [PATCH] Update README.md Co-authored-by: Frazer Smith --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8db90dfb..6a1b2e13 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ fastify.post('/upload/files', async function (req, reply) { }) ``` -Request body key-value pairs can be assigned directly using `attachFieldsToBody: 'keyValues'`. Field values including file buffers will be attached to the body object. +Request body key-value pairs can be assigned directly using `attachFieldsToBody: 'keyValues'`. Field values, including file buffers, will be attached to the body object. ```js fastify.register(require('@fastify/multipart'), { attachFieldsToBody: 'keyValues' })