From 7844e717bbf5c8b7436a65f17b855c6cba6e0514 Mon Sep 17 00:00:00 2001 From: lazaralex98 Date: Fri, 19 Jul 2024 16:26:38 +0300 Subject: [PATCH] fix comm typo --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index bd48df2..b7044bf 100644 --- a/main.go +++ b/main.go @@ -153,7 +153,7 @@ func processContent(content string) (string, error) { continue } - // any whitespace bigger then 1 char, reduce to 1 char + // any whitespace bigger than 1 char, reduce to 1 char for strings.Contains(classList, " ") { classList = strings.ReplaceAll(classList, " ", " ") }