Where
https://perldoc.perl.org/5.30.1/functions/split.html
Description
Error in the documentation of split
In the file in perl/pod/perlfunc.pod, line 7844
old content
produces the output C<a:bc>, and each of these:
print join(':', split(//, 'abc', 3)), "\n";
print join(':', split(//, 'abc', 4)), "\n";
produces the output C<a:b:c>.
new content
produces the output C<a:bc>, and each of these:
print join(':', split(//, 'abc', 4)), "\n";
print join(':', split(//, 'abc', 5)), "\n";
produces the output C<a:b:c:>.
split.pl.txt