aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2012-09-22 05:55:00 +1000
committerAndrew Gerrand <adg@golang.org>2012-09-22 05:55:00 +1000
commite2ce5a37b174e5524e44db4687f517405bb28641 (patch)
treee96dcb184978cd551b1d39f96d050026538ad07e
parentb4724ad7ed3defd0ed4b501313a37ef32ea43697 (diff)
downloadgo-e2ce5a37b174e5524e44db4687f517405bb28641.tar.gz
go-e2ce5a37b174e5524e44db4687f517405bb28641.zip
[release-branch.go1] doc: fix typo in Concurrency Patterns article
««« backport 29990fa0951c doc: fix typo in Concurrency Patterns article Fixes #3178. R=golang-dev, iant CC=golang-dev https://golang.org/cl/6506064 »»»
-rw-r--r--doc/articles/concurrency_patterns.html2
1 files changed, 1 insertions, 1 deletions
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.
</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>),