Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Commit

Permalink
spellcheck - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rinor committed Oct 13, 2020
1 parent 7f7aece commit 7e9cdf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
/* PIN/PASSWORD check */
password := []byte(strings.TrimSpace(*pin))
if len(password) != PIN_LENGTH {
fmt.Fprintf(os.Stderr, "%s: needs %d digits, bud %d provided\n", "pin", PIN_LENGTH, len(password))
fmt.Fprintf(os.Stderr, "%s: needs %d digits, but %d provided\n", "pin", PIN_LENGTH, len(password))
os.Exit(1)
}
// convert pin/password digits from string to int value
Expand Down

0 comments on commit 7e9cdf8

Please sign in to comment.