From 2eba89aadc01c0867b453cb8d1bfba4900969451 Mon Sep 17 00:00:00 2001 From: Muhamad Surya Iksanudin Date: Tue, 8 Oct 2024 03:23:23 +0700 Subject: [PATCH] docs: Fix typo on comment (#3158) fix typo --- bind.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind.go b/bind.go index f7e449f6..e202cd85 100644 --- a/bind.go +++ b/bind.go @@ -160,7 +160,7 @@ func (b *Bind) MultipartForm(out any) error { // It supports decoding the following content types based on the Content-Type header: // application/json, application/xml, application/x-www-form-urlencoded, multipart/form-data // If none of the content types above are matched, it'll take a look custom binders by checking the MIMETypes() method of custom binder. -// If there're no custom binder for mşme type of body, it will return a ErrUnprocessableEntity error. +// If there're no custom binder for mime type of body, it will return a ErrUnprocessableEntity error. func (b *Bind) Body(out any) error { // Get content-type ctype := utils.ToLower(utils.UnsafeString(b.ctx.Context().Request.Header.ContentType()))