diff --git a/proc/proc_darwin.go b/proc/proc_darwin.go index 995a1ea07c193cf045592205a5850bfcf18217ab..c361618e4c817ffb6b3c5cc2d3be02a5fb2077cb 100644 --- a/proc/proc_darwin.go +++ b/proc/proc_darwin.go @@ -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) } } }