Skip to content

Commit e7051e3

Browse files
committed
Changed Perl 6 example in Whitespace section from C<$seen{$_}++> to
C<%seen{$_}++>
1 parent cf9ad41 commit e7051e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Language/5to6.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ I<No space allowed after a prefix operator, or before a
133133
postfix/postcircumfix operator (including array/hash subscripts).>
134134
135135
$seen {$_} ++; # Perl 5
136-
$seen{$_}++; # Perl 6
136+
%seen{$_}++; # Perl 6
137137
=end item
138138
139139
=begin item

0 commit comments

Comments
 (0)