From: Rob Pike Date: Sat, 12 Jul 2008 20:56:33 +0000 (-0700) Subject: fix a couple of minor errors X-Git-Tag: weekly.2009-11-06~3512 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2fdbf0d595ef701dc4c173aef11acfee967bd6ab;p=gostls13.git fix a couple of minor errors SVN=126938 --- diff --git a/test/sieve.go b/test/sieve.go index dd23903e16..365252260c 100644 --- a/test/sieve.go +++ b/test/sieve.go @@ -4,7 +4,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package Main +package main // Send the sequence 2, 3, 4, ... to channel 'ch'. func Generate(ch *chan> int) { @@ -30,13 +30,13 @@ func Sieve() { go Generate(ch); // Start Generate() as a subprocess. for { prime :=