From 8b9db059d7cc2c93a97040e2d225bf40076e7859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Thu, 23 Jan 2025 08:32:43 +0100 Subject: [PATCH] Doc BodyParser: Add multipart form info about the file data --- docs/api/ctx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/ctx.md b/docs/api/ctx.md index d24eef21..40d03ca5 100644 --- a/docs/api/ctx.md +++ b/docs/api/ctx.md @@ -278,7 +278,7 @@ It is important to specify the correct struct tag based on the content type to b :::note -When handling `multipart/form-data`, only the form values can be directly assigned to the struct fields. Files included in the request are not automatically assigned to the struct. You must handle files separately using [`FormFile`](#FormFile) or other file-specific methods. +When handling `multipart/form-data`, only the form values can be directly assigned to the struct fields. Files included in the request are not automatically assigned to the struct. You must handle files separately using [`FormFile`](#formfile) or other file-specific methods. :::