From 0293ef185d0ddf6d41e8bdf109139479b245da61 Mon Sep 17 00:00:00 2001 From: Sarath Kumar Sivan Date: Mon, 26 Oct 2020 22:09:27 -0700 Subject: [PATCH] Fix typo in comments against Password method attached to User struct Signed-off-by: Sarath Kumar Sivan --- prompt/prompt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompt/prompt.go b/prompt/prompt.go index 395c327ca..ac0ff9423 100644 --- a/prompt/prompt.go +++ b/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,