From f1fd4c876b1b0955bbc685b35fd0108ec4ccaf16 Mon Sep 17 00:00:00 2001 From: dudaodong Date: Mon, 28 Feb 2022 10:11:07 +0800 Subject: [PATCH] fmt: gofmt function.go --- function/function.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function/function.go b/function/function.go index bdabb62..6e2cddb 100644 --- a/function/function.go +++ b/function/function.go @@ -13,7 +13,7 @@ import ( func After(n int, fn interface{}) func(args ...interface{}) []reflect.Value { // Catch programming error while constructing the closure mustBeFunction(fn) - + return func(args ...interface{}) []reflect.Value { n-- if n < 1 {