From: Kevin Burke Date: Fri, 24 Feb 2017 20:07:25 +0000 (-0800) Subject: cmd/internal/browser: fix typo X-Git-Tag: go1.9beta1~1436 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=67fcd9c5d9f84e4f66df1e357ca9f76523ecff4e;p=gostls13.git cmd/internal/browser: fix typo Change-Id: I3c31f10c1082c7bc57aac18856014c55f79e0fed Reviewed-on: https://go-review.googlesource.com/37409 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/internal/browser/browser.go b/src/cmd/internal/browser/browser.go index 595c41b3dd..6867c85d23 100644 --- a/src/cmd/internal/browser/browser.go +++ b/src/cmd/internal/browser/browser.go @@ -49,7 +49,7 @@ func Open(url string) bool { 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 within the timeout, it's deemed successful if it exited cleanly. func appearsSuccessful(cmd *exec.Cmd, timeout time.Duration) bool {