Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit bf8b42a

Browse files
committed
Rename variable
1 parent 2736428 commit bf8b42a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internals/cli/ui/ask.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ func AskSecret(io IO, passwordReader PasswordReader, question string) (string, e
6262
return "", err
6363
}
6464

65-
raw, err := passwordReader.Read(promptIn)
65+
secret, err := passwordReader.Read(promptIn)
6666
if err != nil {
6767
return "", ErrReadInput(err)
6868
}
6969

7070
fmt.Fprintln(promptOut, "")
7171

72-
return raw, nil
72+
return secret, nil
7373
}
7474

7575
// AskMultiline prints out the question and reads back the input until an EOF is reached.

0 commit comments

Comments
 (0)