From d353d43d36003614ab192754c6e77a950b20fc00 Mon Sep 17 00:00:00 2001
From: Andrew Gerrand
Date: Tue, 4 Sep 2012 15:28:09 +1000
Subject: [PATCH] doc: fix typo in Concurrency Patterns article
Fixes #3178.
R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/6506064
---
doc/articles/concurrency_patterns.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/articles/concurrency_patterns.html b/doc/articles/concurrency_patterns.html
index 515d974d2b3..62168b840bb 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),