diff --git a/examples/stateful-goroutines/stateful-goroutines.go b/examples/stateful-goroutines/stateful-goroutines.go index 5ffcbf6..34d0ec6 100644 --- a/examples/stateful-goroutines/stateful-goroutines.go +++ b/examples/stateful-goroutines/stateful-goroutines.go @@ -3,8 +3,8 @@ // multiple goroutines. Another option is to use the // built-in synchronization features of goroutines and // channels to achieve the same result. This channel-based -// approach aligns with Go's ideas of sharing memory via -// communications and having each piece of data owned +// approach aligns with Go's ideas of sharing memory by +// communicating and having each piece of data owned // by exactly 1 goroutine. package main