Skip to content

Commit

Permalink
switch Match.gist from q[...] to 「...」, TimToady++
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Aug 13, 2012
1 parent e20252c commit 94aa2b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Match.pm
Expand Up @@ -62,7 +62,7 @@ my class Match is Capture is Cool {
multi method gist (Match:D: $d = 0) {
return "#<failed match>" unless self;
my $s = ' ' x ($d + 1);
my $r = ("=> " if $d) ~ "q[{self}]\n";
my $r = ("=> " if $d) ~ "{self}\n";
for @.caps {
$r ~= $s ~ (.key // '?') ~ ' ' ~ .value.gist($d + 1)
}
Expand Down

0 comments on commit 94aa2b7

Please sign in to comment.