From 354e6707bb279c89cb24609d726d03b365655ba1 Mon Sep 17 00:00:00 2001 From: "aleksandr.vodyanov" Date: Fri, 17 May 2024 16:51:02 +0300 Subject: [PATCH] fix indents --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 11381f5..a6c2dd5 100644 --- a/main.go +++ b/main.go @@ -238,7 +238,7 @@ func fileMatches(path string, patterns []string) bool { // addLicense add a license to the file if missing. // // It returns true if the file was updated. -func addLicense(path string, fmode os.FileMode, tmpl *template.Template, data licenseData) (bool, error) { +func addLicense(path string, fmode os.FileMode, tmpl *template.Template, data licenseData) (bool, error) { var lic []byte var err error lic, err = licenseHeader(path, tmpl, data)