diff options
author | Abigail <abigail@abigail.be> | 2007-04-14 21:22:41 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-04-14 17:38:23 +0000 |
commit | 187a5aa6a4d7c9f1fb9d55ab81e9f793b396e24a (patch) | |
tree | 1d9631a45695ed27667867e3297da6a0793fc346 /pod | |
parent | f6397ea565c44d76cd48e3d5144d33d48765d118 (diff) | |
download | perl-187a5aa6a4d7c9f1fb9d55ab81e9f793b396e24a.tar.gz |
Typo in =item say
Message-ID: <20070414172241.GB3191@abigail.nl>
p4raw-id: //depot/perl@30950
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index eb6bd57794..599017b3f5 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4726,7 +4726,7 @@ X<say> =item say Just like C<print>, but implicitly appends a newline. -C<say LIST> is simply an abbreviation for C<{ local $/ = "\n"; print +C<say LIST> is simply an abbreviation for C<{ local $\ = "\n"; print LIST }>. This keyword is only available when the "say" feature is |