Skip to content

Commit 0c9e962

Browse files
committed
perlfunc/split: fix mangled markup
This was an oversight from 9bdeda4, which used search/replace with a slightly too naive pattern. Fixes #23600.
1 parent 0045848 commit 0c9e962

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pod/perlfunc.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8484,7 +8484,7 @@ However, this:
84848484
uses empty string matches as separators; thus, the empty string
84858485
may be used to split EXPR into a list of its component characters.
84868486

8487-
As a special case for C<split>PATTERNE<sol>,EXPR,LIMIT>,
8487+
As a special case for C<split>,
84888488
the empty pattern given in
84898489
L<match operator|perlop/"m/PATTERN/msixpodualngc"> syntax (C<//>)
84908490
specifically matches the empty string, which is contrary to its usual
@@ -8499,7 +8499,7 @@ C<E<sol>m> and any of the other pattern modifiers valid for C<qr>
84998499
specified explicitly.
85008500

85018501
As another special case,
8502-
C<split>PATTERNE<sol>,EXPR,LIMIT> emulates the default
8502+
C<split> emulates the default
85038503
behavior of the
85048504
command line tool B<awk> when the PATTERN is either omitted or a
85058505
string composed of a single space character (such as S<C<' '>> or

0 commit comments

Comments
 (0)