Skip to content

Commit

Permalink
Fix some odd indenting, no functional change
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Oct 21, 2022
1 parent f403fef commit d9059e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core.c/io_operators.pm6
Expand Up @@ -85,9 +85,9 @@ multi sub printf(Str(Cool) $format, Junction:D \j) {
j.THREAD: { $out.print: sprintf $format, |$_ }
}
multi sub printf(Str(Cool) $format, |) {
my $args := nqp::p6argvmarray;
nqp::shift($args);
$*OUT.print: sprintf $format, nqp::hllize($args)
my $args := nqp::p6argvmarray;
nqp::shift($args);
$*OUT.print: sprintf $format, nqp::hllize($args)
}

proto sub print(|) {*}
Expand Down

0 comments on commit d9059e3

Please sign in to comment.