Skip to content

Commit a8a25c0

Browse files
committed
Statements need to end with ;
1 parent d6548d0 commit a8a25c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Any.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ Coerces the invocant to a C<list> by applying its
605605
L«C<.list>|/routine/list» method and uses
606606
L«C<List.roll>|/type/List#routine_roll» on it.
607607

608-
my Mix $m = ("þ" xx 3, "ð" xx 4, "ß" xx 5).Mix
608+
my Mix $m = ("þ" xx 3, "ð" xx 4, "ß" xx 5).Mix;
609609
say $m.roll; # OUTPUT: «ð␤»
610610
say $m.roll; # OUTPUT: «(ß ß þ ß þ)␤»
611611

@@ -624,7 +624,7 @@ Coerces the invocant to a C<list> by applying
624624
its L«C<.list>|/routine/list» method and uses
625625
L«C<List.pick>|/type/List#routine_pick» on it.
626626

627-
my Range $rg = 'α'..'ω'
627+
my Range $rg = 'α'..'ω';
628628
say $rg.pick(3); # OUTPUT: «(β α σ)␤»
629629

630630

0 commit comments

Comments
 (0)