From b9170d40aeba71344a4e1a48c1b83a3c13ae7d4c Mon Sep 17 00:00:00 2001 From: Nhoya Date: Thu, 21 Sep 2017 20:02:24 +0200 Subject: [PATCH] fixed typo in help --- README.md | 2 +- multibase.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81f732f..db532aa 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Application Options: --b58 Generate base58 of given string/file --b64 Generate base64 of given string/file --b64u Generate URL-compatible base64 - --b85 Generate Abobe's PostScript/PDF base85 of given string/fle + --b85 Generate Abobe's PostScript/PDF base85 of given string/file -d, --decode Decode data Help Options: diff --git a/multibase.go b/multibase.go index 1e0edc8..8cc8e4d 100644 --- a/multibase.go +++ b/multibase.go @@ -16,7 +16,7 @@ var opts struct { Base58 bool `long:"b58" description:"Generate base58 of given string/file"` Base64 bool `long:"b64" description:"Generate base64 of given string/file"` Base64URL bool `long:"b64u" description:"Generate URL-compatible base64"` - Base85 bool `long:"b85" description:"Generate Abobe's PostScript/PDF base85 of given string/fle"` + Base85 bool `long:"b85" description:"Generate Abobe's PostScript/PDF base85 of given string/file"` Decode bool `short:"d" long:"decode" description:"Decode data"` }