From fcfa11286fb61e3dc3dfd1456917cbf111a21f12 Mon Sep 17 00:00:00 2001 From: Chrstopher Hunter <8398225+crhntr@users.noreply.github.com> Date: Wed, 8 Jan 2025 22:29:50 -0800 Subject: [PATCH] fix fmt --- check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check.go b/check.go index a40bbe9..bd22faa 100644 --- a/check.go +++ b/check.go @@ -97,7 +97,7 @@ func CheckTemplates(wd string, log *log.Logger, config RoutesFileConfiguration) } dataVar = sig.Results().At(0).Type() if types.Identical(dataVar, types.Universe.Lookup("any").Type()) { - log.Println("route method returns type any\n\n\t%s\n", sig) + log.Printf("route method returns type any\n\n\t%s\n", sig) continue } } else {