From 46eb610d26787bf38149bc6b894d48188783244c Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:50:17 +0000 Subject: [PATCH] Fix typo --- internal/glance/embed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/glance/embed.go b/internal/glance/embed.go index e9ed009..3d0db8c 100644 --- a/internal/glance/embed.go +++ b/internal/glance/embed.go @@ -142,7 +142,7 @@ var bundledCSSContents = func() []byte { } // We could strip a bunch more unnecessary characters, but the biggest - // win comes from removing the whitepsace at the beginning of lines + // win comes from removing the whitespace at the beginning of lines // since that's at least 4 bytes per property, which yielded a ~20% reduction. contents = cssSingleLineCommentPattern.ReplaceAll(contents, nil) contents = whitespaceAtBeginningOfLinePattern.ReplaceAll(contents, nil)