From: Fazlul Shahriar Date: Tue, 1 Dec 2009 05:23:58 +0000 (-0800) Subject: Fix typo in spec X-Git-Tag: weekly.2009-12-07~94 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=330139e3f2e69504dede46b467c5a83662cc606c;p=gostls13.git 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 8a247461da..fc3fbaf30a 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4402,7 +4402,7 @@ func generate(ch chan<- int) { } } -// 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'.