proc: fix typo

This commit is contained in:
Derek Parker 2016-01-09 13:46:18 -08:00
parent 4266479531
commit 26c0307aef

@ -335,7 +335,7 @@ func (dbp *Process) waitForStop() ([]int, error) {
} else if n < 0 {
return nil, fmt.Errorf("error waiting for thread stop %d", n)
} else if count > 16 {
return nil, fmt.Errorf("could not stop porcess %d", n)
return nil, fmt.Errorf("could not stop process %d", n)
}
}
}