Fix typo in terminal/terminal.go

Fixes #589
This commit is contained in:
aarzilli
2016-07-08 15:10:13 +02:00
parent bfc280f48f
commit c7f11149d7

View File

@ -72,7 +72,7 @@ func (t *Term) Run() (int, error) {
signal.Notify(ch, syscall.SIGINT)
go func() {
for range ch {
fmt.Printf("recieved SIGINT, stopping process (will not forward signal)")
fmt.Printf("received SIGINT, stopping process (will not forward signal)")
_, err := t.client.Halt()
if err != nil {
fmt.Fprintf(os.Stderr, "%v", err)