diff --git a/examples/spawning-processes/spawning-processes.go b/examples/spawning-processes/spawning-processes.go index 58fdae8..261a2d0 100644 --- a/examples/spawning-processes/spawning-processes.go +++ b/examples/spawning-processes/spawning-processes.go @@ -49,7 +49,7 @@ func main() { grepBytes, _ := ioutil.ReadAll(grepOut) grepCmd.Wait() - // We ommited error checks in the above example, but + // We omitted error checks in the above example, but // you could use the usual `if err != nil` pattern for // all of them. We also only collect the `StdoutPipe` // results, but you could collect the `StderrPipe` in diff --git a/examples/spawning-processes/spawning-processes.hash b/examples/spawning-processes/spawning-processes.hash index f36a1cc..3c800a5 100644 --- a/examples/spawning-processes/spawning-processes.hash +++ b/examples/spawning-processes/spawning-processes.hash @@ -1,2 +1,2 @@ -64e8937dacf6d81f39a3b66584fb70f46dd2126b -jUpRr-RcUKf +6a62e3109c483c2b52a99905dc1ba5c8cb2a281b +m2CpSlHPEVq diff --git a/public/spawning-processes b/public/spawning-processes index 3ee9ff8..568b7f2 100644 --- a/public/spawning-processes +++ b/public/spawning-processes @@ -46,7 +46,7 @@ of spawning processes from Go.
package main
We ommited error checks in the above example, but +
We omitted error checks in the above example, but
you could use the usual if err != nil
pattern for
all of them. We also only collect the StdoutPipe
results, but you could collect the StderrPipe
in