From: Rafael Garcia-Suarez Date: Wed, 15 Jun 2005 13:55:50 +0000 (+0000) Subject: Better phrasing X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=39c9c9cd8e3664420b75ceafcc0d146575e756e4;p=p5sagit%2Fp5-mst-13.2.git Better phrasing p4raw-id: //depot/perl@24849 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 57b355d..79c3c78 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -3923,8 +3923,9 @@ the corresponding right parenthesis to terminate the arguments to the print--interpose a C<+> or put parentheses around all the arguments. -Note that if you're storing FILEHANDLES in an array or other expression, -you will have to use a block returning its value instead: +Note that if you're storing FILEHANDLEs in an array, or if you're using +any other expression more complex than a scalar variable to retrieve it, +you will have to use a block returning the filehandle value instead: print { $files[$i] } "stuff\n"; print { $OK ? STDOUT : STDERR } "stuff\n";