From 67fcd9c5d9f84e4f66df1e357ca9f76523ecff4e Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Fri, 24 Feb 2017 12:07:25 -0800 Subject: [PATCH] cmd/internal/browser: fix typo Change-Id: I3c31f10c1082c7bc57aac18856014c55f79e0fed Reviewed-on: https://go-review.googlesource.com/37409 Reviewed-by: Brad Fitzpatrick --- src/cmd/internal/browser/browser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.50.0