grammar fix for FAQ
[email protected] (Stephen Alexander) Thu, 13 Aug 2009 13:57:59 -0500
| Newsgroups | perl.perlfaq.workers |
|---|---|
| Message-ID | <[email protected]> |
Hello, in http://perldoc.perl.org/perlfaq5.html I noticed what I think must be a typo: under "How do I flush/unbuffer an output filehandle? Why must I do this?" the first paragraph reads: Perl does not support truly unbuffered output (except insofar as you can syswrite(OUT, $char, 1) ), although it does support is "command buffering", in which a physical write is performed after every output command. I think it should read: Perl does not support truly unbuffered output (except insofar as you can syswrite(OUT, $char, 1) ), although it does support "command buffering", in which a physical write is performed after every output command. (remove "is" from just before "command buffering"). Thanks, Stephen Alexander