Skip to content

Commit 7e45aeb

Browse files
committed
[FAQ] bump example to 1m objs timotimo++
1 parent 6e7a9f3 commit 7e45aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/faq.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ Examples:
513513
514514
class Foo { has $.i is rw};
515515
516-
for (1..10000) -> $i {
516+
for (1..1000000) -> $i {
517517
my $obj = Foo.new;
518518
$obj.i = $i;
519519
say $obj.i;
@@ -526,7 +526,7 @@ Examples:
526526
527527
has i => ( is=> 'rw');
528528
529-
for my $i (1..10000) {
529+
for my $i (1..1000000) {
530530
my $obj = Foo->new;
531531
$obj->i($i);
532532
say $obj->i;

0 commit comments

Comments
 (0)