We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c5a0c commit 7efb7caCopy full SHA for 7efb7ca
search.go
@@ -16,7 +16,7 @@ func glyphSearch(arg string) (string, error) {
16
// test to confirm that Unicode code point falls in range U+0020 = min printable glyph to utf8.MaxRune value
17
ok := isIntInRange(int32(i))
18
if !ok {
19
- errmsg := fmt.Errorf("Hexadecimal value '" + arg + "' was out of range.")
+ errmsg := fmt.Errorf("hexadecimal value '%s' was out of range", arg)
20
return "", errmsg
21
}
22
r := rune(i)
0 commit comments