Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Purge trailing whitespace in 5to6.pod
  • Loading branch information
Paul Cochrane committed Feb 24, 2015
1 parent 77d2a9c commit 928c6c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Language/5to6.pod
Expand Up @@ -131,7 +131,7 @@ allowed:
# Perl 5
my @books = $xml->parse_file($file) # some comment
->findnodes("/library/book");
# Perl 6
my @books = $xml.parse-file($file)\ # some comment
.findnodes("/library/book");
Expand Down Expand Up @@ -269,11 +269,11 @@ C<&foo;> I<and> C<goto &foo;> I<for re-using the caller's argument list / replac
sub foo { say "before"; &bar; say "after" } # Perl 5
sub foo { say "before"; bar(|@_); say "after" } # Perl 6 - have to be explicit
# TODO: Suggest .callsame once it has been implemented in Rakudo.
sub foo { say "before"; goto &bar } # Perl 5
# TODO: Suggest .nextsame and .nextwith once they've been implemented in Rakudo.
=end item
Expand Down

0 comments on commit 928c6c5

Please sign in to comment.