1
0
Эх сурвалжийг харах

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

Fix typo in comments against Password method attached to User struct
Guillaume Tardif 5 жил өмнө
parent
commit
74b35e3ef3
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  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,