console: remove comment about 'invalid' input (#15735)

All inputs are saved into history, including 'invalid' inputs.
This commit is contained in:
Richard Hart 2018-01-02 07:00:13 -05:00 committed by Felix Lange
parent 5866626b08
commit 72e70bcec2

View File

@ -155,8 +155,7 @@ func (p *terminalPrompter) SetHistory(history []string) {
p.State.ReadHistory(strings.NewReader(strings.Join(history, "\n")))
}
// AppendHistory appends an entry to the scrollback history. It should be called
// if and only if the prompt to append was a valid command.
// AppendHistory appends an entry to the scrollback history.
func (p *terminalPrompter) AppendHistory(command string) {
p.State.AppendHistory(command)
}