Typo correction

This commit is contained in:
Yuval Langer 2014-05-25 05:09:48 +03:00
parent edf813b3d1
commit 8d1a51c41d

View File

@ -19,7 +19,7 @@ func main() {
// to represent this external process. // to represent this external process.
dateCmd := exec.Command("date") dateCmd := exec.Command("date")
// `.Output` is another helper than handles the common // `.Output` is another helper that handles the common
// case of running a command, waiting for it to finish, // case of running a command, waiting for it to finish,
// and collecting its output. If there were no errors, // and collecting its output. If there were no errors,
// `dateOut` will hold bytes with the date info. // `dateOut` will hold bytes with the date info.