Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed May 31, 2024
1 parent 2f5c975 commit 4deffd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fdcc/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func (p *Parser) readOperands() []string {

var regexUnicode = regexp.MustCompile(`<U[[:xdigit:]]{4}>`)

// UnescapeUnicode escapes unicode sequences of the form <U0000>
// UnescapeUnicode unescapes unicode sequences of the form <U0000>
func UnescapeUnicode(s string) string {
unescaped := regexUnicode.ReplaceAllStringFunc(s, func(m string) string {
hex := m[2:6]
Expand Down

0 comments on commit 4deffd0

Please sign in to comment.