From 2db4c4e7b5396a4686ef1e8c88afe7c1bcb3ff3c Mon Sep 17 00:00:00 2001 From: ktr0731 Date: Fri, 14 Feb 2020 23:04:14 +0900 Subject: [PATCH] use %s --- shellstring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shellstring.go b/shellstring.go index cda65dc..1c960bb 100644 --- a/shellstring.go +++ b/shellstring.go @@ -75,7 +75,7 @@ func Parse(in string) ([]string, error) { } } if len(stack) != 0 { - return nil, fmt.Errorf("corrensponding symbol missing: %q", stack) + return nil, fmt.Errorf("corrensponding symbol missing: %s", stack) } if len(s) != 0 { out = append(out, string(s))