diff options
| author | Kevin Burke <kev@inburke.com> | 2017-02-24 12:07:25 -0800 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2017-02-24 20:49:10 +0000 |
| commit | 67fcd9c5d9f84e4f66df1e357ca9f76523ecff4e (patch) | |
| tree | 8b8d50a31778a9c67437321d3ddc161bd9fba251 /src | |
| parent | 8c24e52247365725c97b1ed5bea63a84642fd0f7 (diff) | |
| download | go-67fcd9c5d9f84e4f66df1e357ca9f76523ecff4e.tar.xz | |
cmd/internal/browser: fix typo
Change-Id: I3c31f10c1082c7bc57aac18856014c55f79e0fed
Reviewed-on: https://go-review.googlesource.com/37409
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/cmd/internal/browser/browser.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
