Ruby in a Nutshell By Yukihiro Matsumoto The following errata were *corrected* in the 3/05 reprint: Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem (1) IN PRINT: fourth paragraph; "...a good starting pointing..." NOW READS: "...a good starting point..." [119] f.putbinaryfile, f.puttextfile; f.putbinaryfile(remote, local[, blocksize=4096[, callback]]) f.putbinaryfile(remote, local[, blocksize=4096]) {|data|...} f.puttextfile(remote, local[, callback]) f.puttextfile(remote, local) {|data|...} NOW READ: f.putbinaryfile(local, remote[, blocksize=4096[, callback]]) f.putbinaryfile(local, remote[, blocksize=4096]) {|data|...} f.puttextfile(local, remote[, callback]) f.puttextfile(local, remote) {|data|...}