summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorE. Choroba <choroba@cpan.org>2022-09-03 13:10:52 +0200
committerPaul Evans <leonerd@leonerd.org.uk>2022-09-03 15:27:40 +0100
commitf09935421f5fd35e22ca217b490e2c9ed7dcb071 (patch)
tree5de72a5a7ea33519dde9b3432906b5767d9950e4 /pod/perlfunc.pod
parent8975221916115baa0cf0fceb2f33c1abb6ae50b9 (diff)
downloadperl-f09935421f5fd35e22ca217b490e2c9ed7dcb071.tar.gz
Document that "select" affects "say"'s default filehandle, too
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index b723cbbcb1..663c15358f 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -7154,10 +7154,10 @@ X<select> X<filehandle, default>
Returns the currently selected filehandle. If FILEHANDLE is supplied,
sets the new current default filehandle for output. This has two
-effects: first, a L<C<write>|/write FILEHANDLE> or a L<C<print>|/print
-FILEHANDLE LIST> without a filehandle
-default to this FILEHANDLE. Second, references to variables related to
-output will refer to this output channel.
+effects: first, a L<C<write>|/write FILEHANDLE>, L<C<print>|/print
+FILEHANDLE LIST>, or L<C<say>|/say FILEHANDLE LIST> without a
+filehandle default to this FILEHANDLE. Second, references to variables
+related to output will refer to this output channel.
For example, to set the top-of-form format for more than one
output channel, you might do the following: