Spelling.

comand => command
This commit is contained in:
sre 2012-10-16 01:29:17 +03:00
parent 321b37d42d
commit 2cff792946

View File

@ -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()