Skip to content

Commit 79ab0d7

Browse files
committed
whitespace
1 parent 2511723 commit 79ab0d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/101-basics.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Here's one way to solve that problem in Perl 6:
3737
3838
for $file.lines -> $line {
3939
next unless $line; # ignore any empty lines
40-
40+
4141
my ($pairing, $result) = $line.split(' | ');
4242
my ($p1, $p2) = $pairing.words;
4343
my ($r1, $r2) = $result.split(':');
@@ -72,7 +72,7 @@ Beth has won 1 matches and 4 sets
7272
Every Perl 6 program should begin with a line similar to C<use v6;>. This line
7373
tells the compiler which version of Perl the program expects. Should you
7474
accidentally run the file with Perl 5, you'll get a helpful error message. 6.c
75-
is an example of a Perl 6 version.
75+
is an example of a Perl 6 version.
7676
7777
=head3 X<C<statement>|statement (Basics)>
7878

0 commit comments

Comments
 (0)