summaryrefslogtreecommitdiff
path: root/test/chan
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2013-06-09 21:50:24 +0800
committerShenghou Ma <minux.ma@gmail.com>2013-06-09 21:50:24 +0800
commit0aa5bc7dea4a85dfc6607e24953cf8253593e248 (patch)
tree7c7173fd9b52540d35c18115902e7dbcd5646493 /test/chan
parent7b8a6ce9d9c26e7109ae028ef3de7db1b9817b6d (diff)
downloadgo-0aa5bc7dea4a85dfc6607e24953cf8253593e248.tar.gz
all: fix typos
R=golang-dev, bradfitz, khr, r CC=golang-dev https://codereview.appspot.com/7461046
Diffstat (limited to 'test/chan')
-rw-r--r--test/chan/doubleselect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/chan/doubleselect.go b/test/chan/doubleselect.go
index ac559302d..6be3faf55 100644
--- a/test/chan/doubleselect.go
+++ b/test/chan/doubleselect.go
@@ -36,7 +36,7 @@ func sender(n int, c1, c2, c3, c4 chan<- int) {
}
// mux receives the values from sender and forwards them onto another channel.
-// It would be simplier to just have sender's four cases all be the same
+// It would be simpler to just have sender's four cases all be the same
// channel, but this doesn't actually trigger the bug.
func mux(out chan<- int, in <-chan int, done chan<- bool) {
for v := range in {