commit | 330139e3f2e69504dede46b467c5a83662cc606c | [log] [tgz] |
---|---|---|
author | Fazlul Shahriar <fshahriar@gmail.com> | Mon Nov 30 21:23:58 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Mon Nov 30 21:23:58 2009 -0800 |
tree | 6d5893fb8c1a4f5d430b4310388d8be284eed55f | |
parent | 593ea313611bc347ec53daec9dc27338c1340e7b [diff] [blame] |
Fix typo in spec R=golang-dev, rsc https://golang.org/cl/164052
diff --git a/doc/go_spec.html b/doc/go_spec.html index 8a24746..fc3fbaf 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html
@@ -4402,7 +4402,7 @@ } } -// Copy the values from channel 'in' to channel 'out', +// Copy the values from channel 'src' to channel 'dst', // removing those divisible by 'prime'. func filter(src <-chan int, dst chan<- int, prime int) { for i := range src { // Loop over values received from 'src'.