From 8ee333582ff82d0df971309e94946f2f6e69475b Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 26 Apr 2022 19:36:46 +0200 Subject: a few fixes --- util/text/validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/text') diff --git a/util/text/validate.go b/util/text/validate.go index 4c3f7065..f25a56b4 100644 --- a/util/text/validate.go +++ b/util/text/validate.go @@ -33,7 +33,7 @@ func Safe(s string) bool { return true } -// Safe will tell if a character in the string is considered unsafe +// SafeOneLine will tell if a character in the string is considered unsafe // Currently trigger on all unicode control character func SafeOneLine(s string) bool { for _, r := range s { -- cgit