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]