From 4deffd0fe297b1546e04864c0ae69e59b2c8c0fc Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Fri, 31 May 2024 13:03:41 -0500 Subject: [PATCH] Fix comment --- fdcc/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdcc/parser.go b/fdcc/parser.go index 60bd63e..1c872e0 100644 --- a/fdcc/parser.go +++ b/fdcc/parser.go @@ -120,7 +120,7 @@ func (p *Parser) readOperands() []string { var regexUnicode = regexp.MustCompile(``) -// UnescapeUnicode escapes unicode sequences of the form +// UnescapeUnicode unescapes unicode sequences of the form func UnescapeUnicode(s string) string { unescaped := regexUnicode.ReplaceAllStringFunc(s, func(m string) string { hex := m[2:6]