summaryrefslogtreecommitdiff
path: root/libgo/go/os/exec/lp_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/exec/lp_unix.go')
-rw-r--r--libgo/go/os/exec/lp_unix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/os/exec/lp_unix.go b/libgo/go/os/exec/lp_unix.go
index 20ce7a41e03..799e0b4eeb9 100644
--- a/libgo/go/os/exec/lp_unix.go
+++ b/libgo/go/os/exec/lp_unix.go
@@ -27,8 +27,8 @@ func findExecutable(file string) error {
return os.ErrPermission
}
-// LookPath searches for an executable binary named file
-// in the directories named by the PATH environment variable.
+// LookPath searches for an executable named file in the
+// directories named by the PATH environment variable.
// If file contains a slash, it is tried directly and the PATH is not consulted.
// The result may be an absolute path or a path relative to the current directory.
func LookPath(file string) (string, error) {