Skip to content

Commit 928c6c5

Browse files
committed
Purge trailing whitespace in 5to6.pod
1 parent 77d2a9c commit 928c6c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Language/5to6.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ allowed:
131131
# Perl 5
132132
my @books = $xml->parse_file($file) # some comment
133133
->findnodes("/library/book");
134-
134+
135135
# Perl 6
136136
my @books = $xml.parse-file($file)\ # some comment
137137
.findnodes("/library/book");
@@ -269,11 +269,11 @@ C<&foo;> I<and> C<goto &foo;> I<for re-using the caller's argument list / replac
269269
270270
sub foo { say "before"; &bar; say "after" } # Perl 5
271271
sub foo { say "before"; bar(|@_); say "after" } # Perl 6 - have to be explicit
272-
272+
273273
# TODO: Suggest .callsame once it has been implemented in Rakudo.
274274
275275
sub foo { say "before"; goto &bar } # Perl 5
276-
276+
277277
# TODO: Suggest .nextsame and .nextwith once they've been implemented in Rakudo.
278278
=end item
279279

0 commit comments

Comments
 (0)