From aff3d1313f61bfea727b04473f13548cd7bcdd84 Mon Sep 17 00:00:00 2001 From: qshuai Date: Mon, 22 Oct 2018 19:56:20 +0800 Subject: [PATCH] Fix help tip error --- rstr/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rstr/main.go b/rstr/main.go index 020abe2..b0edcbd 100644 --- a/rstr/main.go +++ b/rstr/main.go @@ -24,7 +24,7 @@ const ( func main() { length := flag.Int("length", defaultBytesLength, "Please input the needed length of the generated random string (base58 encoded string length is not precision)") - encode := flag.String("encode", string(base64Encoding), "Please input encode type (base64 encoded string with character `+/=`)") + encode := flag.String("encode", string(base64Encoding), "Please input encode type (base64 encoded string with character '+/=')") flag.Parse() rand.Seed(time.Now().UnixNano())