Skip to content

Commit

Permalink
Fix help tip error
Browse files Browse the repository at this point in the history
  • Loading branch information
qshuai committed Oct 22, 2018
1 parent 8cd8b97 commit aff3d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rstr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit aff3d13

Please sign in to comment.