From 2cff79294698a9086f652bedfd056f1f17f3ae90 Mon Sep 17 00:00:00 2001 From: sre Date: Tue, 16 Oct 2012 01:29:17 +0300 Subject: [PATCH] Spelling. comand => command --- 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 b7b708a..1fb0c35 100644 --- a/examples/spawning-processes/spawning-processes.go +++ b/examples/spawning-processes/spawning-processes.go @@ -20,7 +20,7 @@ func main() { dateCmd := exec.Command("date") // `.Output` is another helper than handles the common - // case of running a comand, waiting for it to finish, + // case of running a command, waiting for it to finish, // and collecting its output. If there were no errors, // `dateOut` will hold bytes with the date info. dateOut, err := dateCmd.Output()