In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/521fe6911c4cc74d9f8b0db8553451c4ccf7ad7f?hp=94a9a4bc91d62776a9de76c5bf25aeb1129c1a24>

- Log -----------------------------------------------------------------
commit 521fe6911c4cc74d9f8b0db8553451c4ccf7ad7f
Author: Moritz Lenz <[email protected]>
Date:   Wed Aug 12 14:41:17 2009 +0200

    document split in void context in perlfunc.pod
-----------------------------------------------------------------------

Summary of changes:
 pod/perlfunc.pod |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 3330b85..67b001d 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -5473,9 +5473,10 @@ Splits the string EXPR into a list of strings and 
returns that list.  By
 default, empty leading fields are preserved, and empty trailing ones are
 deleted.  (If all fields are empty, they are considered to be trailing.)
 
-In scalar context, returns the number of fields found and splits into
-the C<@_> array.  Use of split in scalar context is deprecated, however,
-because it clobbers your subroutine arguments.
+In scalar context, returns the number of fields found. In scalar and void
+context it splits into the C<@_> array.  Use of split in scalar and void
+context is deprecated, however, because it clobbers your subroutine
+arguments.
 
 If EXPR is omitted, splits the C<$_> string.  If PATTERN is also omitted,
 splits on whitespace (after skipping any leading whitespace).  Anything

--
Perl5 Master Repository

Reply via email to