Skip to content

Commit

Permalink
convert to string
Browse files Browse the repository at this point in the history
  • Loading branch information
ktr0731 committed Feb 14, 2020
1 parent 2db4c4e commit b6c4867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shellstring.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func Parse(in string) ([]string, error) {
}
}
if len(stack) != 0 {
return nil, fmt.Errorf("corrensponding symbol missing: %s", stack)
return nil, fmt.Errorf("corrensponding symbol missing: %s", string(stack))
}
if len(s) != 0 {
out = append(out, string(s))
Expand Down

0 comments on commit b6c4867

Please sign in to comment.