summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-07-26 16:06:56 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-07-26 16:06:56 +0000
commitcc50a2034c8f38d702b126ee0ae87fcad255227a (patch)
tree952c0923fec1004f60bdb286aa5b2d16919cc461 /pod/perlfunc.pod
parenteae9c1515e21a0ce7cdb8dfed3c4386402d77e42 (diff)
downloadperl-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.pod2
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: