Selaa lähdekoodia

Fix typo in comments against Password method attached to User struct

Signed-off-by: Sarath Kumar Sivan <[email protected]>
Sarath Kumar Sivan 5 vuotta sitten
vanhempi
sitoutus
0293ef185d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      prompt/prompt.go

+ 1 - 1
prompt/prompt.go

@@ -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,