Skip to content

Commit 8ae378f

Browse files
authored
: → ;
1 parent 099a4f8 commit 8ae378f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Beginners might expect a variable in a C<Capture> to supply its current
229229
value when that C<Capture> is later used. For example:
230230
231231
=for code
232-
my $a = 2; say join ",", ($a, ++$a): # OUTPUT: «3,3␤»
232+
my $a = 2; say join ",", ($a, ++$a); # OUTPUT: «3,3␤»
233233
234234
Here the C<Capture> contained the B<container> pointed to by C<$a> and the
235235
B<value> of the result of the expression C<++$a>. Since the C<Capture> must

0 commit comments

Comments
 (0)