aboutsummaryrefslogtreecommitdiff
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
commitfaef52c214c3f0cb610aff18f45bfc3e620be63a (patch)
treee81bab8c4cdd4870e4827cef39c6ad5c63b59193 /test/chan
parent822da408147e4cf74b38013cbc8b1090b31da738 (diff)
downloadgo-faef52c214c3f0cb610aff18f45bfc3e620be63a.tar.gz
go-faef52c214c3f0cb610aff18f45bfc3e620be63a.zip
all: fix typos
R=golang-dev, bradfitz, khr, r CC=golang-dev https://golang.org/cl/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 ac559302d9..6be3faf55a 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 {