This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Better phrasing
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 15 Jun 2005 13:55:50 +0000 (13:55 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 15 Jun 2005 13:55:50 +0000 (13:55 +0000)
p4raw-id: //depot/perl@24849

pod/perlfunc.pod

index 57b355d..79c3c78 100644 (file)
@@ -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";