diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-26 16:06:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-26 16:06:56 +0000 |
commit | cc50a2034c8f38d702b126ee0ae87fcad255227a (patch) | |
tree | 952c0923fec1004f60bdb286aa5b2d16919cc461 /pod/perlfunc.pod | |
parent | eae9c1515e21a0ce7cdb8dfed3c4386402d77e42 (diff) | |
download | perl-cc50a2034c8f38d702b126ee0ae87fcad255227a.tar.gz |
More split() doc and test patches from Mike Guy.
p4raw-id: //depot/perl@6443
Diffstat (limited to 'pod/perlfunc.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 5b91dfa4f9..9e920cfad5 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4378,7 +4378,7 @@ A C<split> on C</\s+/> is like a C<split(' ')> except that any leading whitespace produces a null first field. A C<split> with no arguments really does a C<split(' ', $_)> internally. -A PATTERN of C</^/) is treated as if it were C/^/m), since it isn't +A PATTERN of C</^/> is treated as if it were C</^/m>, since it isn't much use otherwise. Example: |