From 72e70bcec2e288e2f5d375290d194fd5832842e2 Mon Sep 17 00:00:00 2001 From: Richard Hart Date: Tue, 2 Jan 2018 07:00:13 -0500 Subject: [PATCH] console: remove comment about 'invalid' input (#15735) All inputs are saved into history, including 'invalid' inputs. --- console/prompter.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/console/prompter.go b/console/prompter.go index ea03694d41..c477b48178 100644 --- a/console/prompter.go +++ b/console/prompter.go @@ -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) }