summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod')
-rw-r--r--pod/perlretut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod
index f2187179c2..3b7413efa9 100644
--- a/pod/perlretut.pod
+++ b/pod/perlretut.pod
@@ -925,7 +925,7 @@ elements gathered from a split operation where parentheses are
required for some reason:
$x = '12aba34ba5';
- @num = split /(a|b)+/, $x; # @num = ('12','a','34','b','5')
+ @num = split /(a|b)+/, $x; # @num = ('12','a','34','a','5')
@num = split /(?:a|b)+/, $x; # @num = ('12','34','5')