Skip to content

Commit edd7715

Browse files
committed
$<starter> and $<stopper> under * are arrays
1 parent 64edd1c commit edd7715

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

STD.pm6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,9 @@ token nibbler {
458458
my $n = $<nibbler>[*-1]<nibbles>;
459459
my @n = @$n;
460460

461-
push @nibbles, $<starter>;
461+
push @nibbles, $<starter>[*-1];
462462
push @nibbles, @n;
463-
push @nibbles, $<stopper>;
463+
push @nibbles, $<stopper>[*-1];
464464

465465
$text = '';
466466
$to = $from =.pos;

0 commit comments

Comments
 (0)