From 2150181303658e6792caf98de2dd9872e9a64eb0 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 15 Apr 2024 06:57:29 +0200 Subject: [PATCH] func-import.go: renamed ImportImportFunc as ImportImportFuncs --- func-import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/func-import.go b/func-import.go index d3d36b5..86068cb 100644 --- a/func-import.go +++ b/func-import.go @@ -136,7 +136,7 @@ func doImport(ctx ExprContext, name string, dirList []string, it Iterator) (resu return } -func ImportImportFunc(ctx ExprContext) { +func ImportImportFuncs(ctx ExprContext) { ctx.RegisterFunc("import", &simpleFunctor{f: importFunc}, 1, -1) ctx.RegisterFunc("include", &simpleFunctor{f: includeFunc}, 1, -1) }