diff options
| author | Nigel Tao <nigeltao@golang.org> | 2010-09-23 11:32:11 +1000 |
|---|---|---|
| committer | Nigel Tao <nigeltao@golang.org> | 2010-09-23 11:32:11 +1000 |
| commit | 43527e9dbb14e8a4f66690c918ec2933d8997a50 (patch) | |
| tree | a6a23570941b607065bf32fc1fd119e4b59ab82a | |
| parent | 0f17173f79d674b3e94e6dabf096116677468fe6 (diff) | |
| download | go-43527e9dbb14e8a4f66690c918ec2933d8997a50.tar.xz | |
netchan: fix comment typo.
R=adg
CC=golang-dev
https://golang.org/cl/2204047
| -rw-r--r-- | src/pkg/netchan/import.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/netchan/import.go b/src/pkg/netchan/import.go index bb19dd4702..48fdb7bad9 100644 --- a/src/pkg/netchan/import.go +++ b/src/pkg/netchan/import.go @@ -162,7 +162,7 @@ func (imp *Importer) Import(name string, chT interface{}, dir Dir) os.Error { // imp, err := NewImporter("tcp", "netchanserver.mydomain.com:1234") // if err != nil { log.Exit(err) } // ch := make(chan myType) -// err := imp.ImportNValues("name", ch, Recv, 1) +// err = imp.ImportNValues("name", ch, Recv, 1) // if err != nil { log.Exit(err) } // fmt.Printf("%+v\n", <-ch) func (imp *Importer) ImportNValues(name string, chT interface{}, dir Dir, n int) os.Error { |
