Fix EOF's package in overview doc.

This commit is contained in:
Matt Goodall 2012-07-10 15:18:35 +01:00
parent 38b727ed46
commit c33950f532
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
for {
stanza, err := X.Recv()
if err == os.EOF {
if err == io.EOF {
break
}
log.Printf("%T : %v\n", stanza, stanza)