From b169173b1961b1fd7c870392489160e9b6ae1479 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Mon, 22 Oct 2012 08:30:05 -0400 Subject: [PATCH] normalize to command-line --- examples/spawning-processes/spawning-processes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/spawning-processes/spawning-processes.go b/examples/spawning-processes/spawning-processes.go index 1fb0c35..8d4de8e 100644 --- a/examples/spawning-processes/spawning-processes.go +++ b/examples/spawning-processes/spawning-processes.go @@ -58,7 +58,7 @@ func main() { // Note that when spawning commands we need to // provide an explicitly delineated command and // argument array, vs. being able to just pass in one - // command line string. If you want to spawn a full + // command-line string. If you want to spawn a full // command with a string, you can use `bash`'s `-c` // option: lsCmd := exec.Command("bash", "-c", "ls -a -l -h")