1
0
mirror of https://github.com/golang/go synced 2024-11-18 16:54:43 -07:00

cmd/internal/browser: fix typo

Change-Id: I3c31f10c1082c7bc57aac18856014c55f79e0fed
Reviewed-on: https://go-review.googlesource.com/37409
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Kevin Burke 2017-02-24 12:07:25 -08:00 committed by Brad Fitzpatrick
parent 8c24e52247
commit 67fcd9c5d9

View File

@ -49,7 +49,7 @@ func Open(url string) bool {
return false return false
} }
// appearsSuccessful reports whether the command appears to have run succesfully. // appearsSuccessful reports whether the command appears to have run successfully.
// If the command runs longer than the timeout, it's deemed successful. // If the command runs longer than the timeout, it's deemed successful.
// If the command runs within the timeout, it's deemed successful if it exited cleanly. // If the command runs within the timeout, it's deemed successful if it exited cleanly.
func appearsSuccessful(cmd *exec.Cmd, timeout time.Duration) bool { func appearsSuccessful(cmd *exec.Cmd, timeout time.Duration) bool {