Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Perlito5 - perl6 - call
  • Loading branch information
fglock committed Oct 10, 2013
1 parent a64c91d commit 219ca58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perlito5.pl
Expand Up @@ -12741,7 +12741,7 @@ sub Perlito5::Perl6::PrettyPrinter::call {
shift(@dd);
my $open = '(';
render(shift(@dd), $level, $out);
push(@{$out}, '->');
push(@{$out}, '.');
my $d = $dd[0];
render($d, $level, $out);
$dd[0] = 'list:<,>';
Expand Down
2 changes: 1 addition & 1 deletion src5/lib/Perlito5/Perl6/PrettyPrinter.pm
Expand Up @@ -286,7 +286,7 @@ sub call {
shift @dd;
my $open = '(';
render( shift(@dd), $level, $out );
push @$out, '->';
push @$out, '.';
my $d = $dd[0];
render( $d, $level, $out );
$dd[0] = 'list:<,>';
Expand Down

0 comments on commit 219ca58

Please sign in to comment.