More split() doc and test patches from Mike Guy.
[p5sagit/p5-mst-13.2.git] / pod / perlfunc.pod
index 5b91dfa..9e920cf 100644 (file)
@@ -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: