]> Cypherpunks repositories - gostls13.git/commitdiff
doc: fix typo in Concurrency Patterns article
authorAndrew Gerrand <adg@golang.org>
Tue, 4 Sep 2012 05:28:09 +0000 (15:28 +1000)
committerAndrew Gerrand <adg@golang.org>
Tue, 4 Sep 2012 05:28:09 +0000 (15:28 +1000)
Fixes #3178.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/6506064

doc/articles/concurrency_patterns.html

index 515d974d2b3e6908a31093a72c43752572e2249b..62168b840bb1b845617be777ccd04b57a080d029 100644 (file)
@@ -64,7 +64,7 @@ could fail since no one is ready.
 </p>
 
 <p>
-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
 <a href="https://en.wikipedia.org/wiki/Race_condition">race condition</a>, but
 the fix is trivial. We just make sure to buffer the channel <code>ch</code> (by
 adding the buffer length as the second argument to <a href="/pkg/builtin/#make">make</a>),