From: Andrew Gerrand Date: Tue, 4 Sep 2012 05:28:09 +0000 (+1000) Subject: doc: fix typo in Concurrency Patterns article X-Git-Tag: go1.1rc2~2532 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d353d43d36003614ab192754c6e77a950b20fc00;p=gostls13.git doc: fix typo in Concurrency Patterns article Fixes #3178. R=golang-dev, iant CC=golang-dev https://golang.org/cl/6506064 --- diff --git a/doc/articles/concurrency_patterns.html b/doc/articles/concurrency_patterns.html index 515d974d2b..62168b840b 100644 --- a/doc/articles/concurrency_patterns.html +++ b/doc/articles/concurrency_patterns.html @@ -64,7 +64,7 @@ could fail since no one is ready.

-This problem is a textbook of example of what is known as a +This problem is a textbook example of what is known as a race condition, but the fix is trivial. We just make sure to buffer the channel ch (by adding the buffer length as the second argument to make),