From e6c231a959b39ce6094ee931af083254fb3a312d Mon Sep 17 00:00:00 2001
From: Mark McGranaghan <mmcgrana@gmail.com>
Date: Sun, 21 Oct 2012 19:28:13 -0400
Subject: [PATCH] more idiomadic phrase

---
 examples/stateful-goroutines/stateful-goroutines.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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