Skip to content

Commit 9b2f299

Browse files
authored
Merge pull request #220 from saginadir/patch-2
Small type fix in parser.go
2 parents 26b9301 + ee29817 commit 9b2f299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ func GetString(data []byte, keys ...string) (val string, err error) {
11291129
return "", fmt.Errorf("Value is not a string: %s", string(v))
11301130
}
11311131

1132-
// If no escapes return raw conten
1132+
// If no escapes return raw content
11331133
if bytes.IndexByte(v, '\\') == -1 {
11341134
return string(v), nil
11351135
}

0 commit comments

Comments
 (0)