diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-08-20 20:12:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 20:12:48 +0800 |
commit | 87f294aa0b9cf209ad80f8a0a189e0cdcc71e223 (patch) | |
tree | e155cdaa29c0232e3412c2562b9388eb65910ce7 /console/console.go | |
parent | 68f0a414eadda4c5485e4e96bda9c4b8b54eda6d (diff) | |
parent | 0fd02fe9cff54a5edce87588ed780c76a95329fd (diff) | |
download | go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar.gz go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar.bz2 go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar.lz go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar.xz go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.tar.zst go-tangerine-87f294aa0b9cf209ad80f8a0a189e0cdcc71e223.zip |
Merge pull request #17437 from hackmod/console-typo
console: fixed comment typo
Diffstat (limited to 'console/console.go')
-rw-r--r-- | console/console.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console/console.go b/console/console.go index 56e03837a..3c397f800 100644 --- a/console/console.go +++ b/console/console.go @@ -314,7 +314,7 @@ func (c *Console) Interactive() { input = "" // Current user input scheduler = make(chan string) // Channel to send the next prompt on and receive the input ) - // Start a goroutine to listen for promt requests and send back inputs + // Start a goroutine to listen for prompt requests and send back inputs go func() { for { // Read the next user input |