Skip to content

Commit 65172ba

Browse files
authored
no need for parens
1 parent ff89b2b commit 65172ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/faq.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ Examples:
685685
686686
class Foo { has $.i is rw };
687687
688-
for (1..1_000_000) -> $i {
688+
for 1..1_000_000 -> $i {
689689
my $obj = Foo.new;
690690
$obj.i = $i;
691691
}

0 commit comments

Comments
 (0)