From e3aef9a949cea3a9579a0963bca017dfc6ea0e5e Mon Sep 17 00:00:00 2001 From: anazibinurasheed Date: Wed, 13 Sep 2023 12:03:13 +0530 Subject: [PATCH] - Renamed functions to have more descriptive names. - Ensured that function names follow go-lint naming conventions. - Corrected and spelling mistakes in the codebase. --- binding/binding_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding/binding_test.go b/binding/binding_test.go index 36048056..cb4b478a 100644 --- a/binding/binding_test.go +++ b/binding/binding_test.go @@ -50,7 +50,7 @@ type FooBarFileStruct struct { type FooBarFileFailStruct struct { FooBarStruct File *multipart.FileHeader `invalid_name:"file" binding:"required"` - // for unexport test + // for unexported test data *multipart.FileHeader `form:"data" binding:"required"` }