aboutsummaryrefslogtreecommitdiffstats
path: root/console
diff options
context:
space:
mode:
authorWenbiao Zheng <delweng@gmail.com>2018-08-27 16:49:29 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-08-27 16:49:29 +0800
commitd1aa605f1e8639769cdd75bcec3064c29a62b34a (patch)
tree84d7aba82d7365ca736afa52b66ef100d117afca /console
parent70398d300d4da97c89f96f5c9629caa327de5c39 (diff)
downloadgo-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar.gz
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar.bz2
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar.lz
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar.xz
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.tar.zst
go-tangerine-d1aa605f1e8639769cdd75bcec3064c29a62b34a.zip
all: remove the duplicate 'the' in annotations (#17509)
Diffstat (limited to 'console')
-rw-r--r--console/prompter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/console/prompter.go b/console/prompter.go
index 9b90034db..29a53aead 100644
--- a/console/prompter.go
+++ b/console/prompter.go
@@ -43,7 +43,7 @@ type UserPrompter interface {
// choice to be made, returning that choice.
PromptConfirm(prompt string) (bool, error)
- // SetHistory sets the the input scrollback history that the prompter will allow
+ // SetHistory sets the input scrollback history that the prompter will allow
// the user to scroll back to.
SetHistory(history []string)
@@ -149,7 +149,7 @@ func (p *terminalPrompter) PromptConfirm(prompt string) (bool, error) {
return false, err
}
-// SetHistory sets the the input scrollback history that the prompter will allow
+// SetHistory sets the input scrollback history that the prompter will allow
// the user to scroll back to.
func (p *terminalPrompter) SetHistory(history []string) {
p.State.ReadHistory(strings.NewReader(strings.Join(history, "\n")))