Merge pull request #834 from sarathkumarsivan/fix-typo-prompt

Fix typo in comments against Password method attached to User struct
This commit is contained in:
Guillaume Tardif 2020-10-27 09:43:06 +01:00 committed by GitHub
commit 74b35e3ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func (u User) Confirm(message string, defaultValue bool) (bool, error) {
return b, err
}
// Password implemetns a text input with masked characters
// Password implements a text input with masked characters.
func (u User) Password(message string) (string, error) {
qs := &survey.Password{
Message: message,