From: Andrew Gerrand
Date: Fri, 21 Sep 2012 19:55:00 +0000 (+1000)
Subject: [release-branch.go1] doc: fix typo in Concurrency Patterns article
X-Git-Tag: go1.0.3~43
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e2ce5a37b174e5524e44db4687f517405bb28641;p=gostls13.git
[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
»»»
---
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),