From e170f6017eec7abfd5153fb4f6da6addacc30963 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 26 Jun 2024 19:35:21 +0800 Subject: [PATCH] fix misspelling --- sui/core/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sui/core/parser.go b/sui/core/parser.go index bfd1b255..2cdee7ce 100644 --- a/sui/core/parser.go +++ b/sui/core/parser.go @@ -123,7 +123,7 @@ func (parser *TemplateParser) Render(html string) (string, error) { // Remove the sui-hide attribute doc.Find("[sui-hide]").Remove() - // Remove All comments and unsed nodes + // Remove All comments and used nodes parser.tidy(doc.Selection) }