Skip to content

Commit 4576bd8

Browse files
committed
remove trailing whitespace
1 parent 7ac8ab1 commit 4576bd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/haskell-to-p6.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,10 @@ And now in Perl6 :
381381
=begin code
382382
# using `if` and `for`
383383
my @evens = ($_ if $_ %% 2 for ^100);
384-
384+
385385
# using gather/take to build a Seq
386386
my $evens = gather for ^100 { take $_ if $_ %% 2 };
387-
387+
388388
# using gather/take to build an Array
389389
my @evens = gather for ^100 { take $_ if $_ %% 2 };
390390
=end code

0 commit comments

Comments
 (0)