From 40ec5bc0f6599f53c2084d993001e8582e8a06a1 Mon Sep 17 00:00:00 2001 From: dudaodong Date: Mon, 27 Dec 2021 20:40:54 +0800 Subject: [PATCH] fmt: fix lint issue --- function/function.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/function/function.go b/function/function.go index 109b8e6..b580b50 100644 --- a/function/function.go +++ b/function/function.go @@ -2,7 +2,6 @@ // Use of this source code is governed by MIT license // Package function implements some functions for control the function execution and some is for functional programming. - package function import ( @@ -36,7 +35,7 @@ func Before(n int, fn interface{}) func(args ...interface{}) []reflect.Value { return res } } - +// Fn is for curry function which is func(...interface{}) interface{} type Fn func(...interface{}) interface{} // Curry make a curryed function