Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Be more consistent on quoting in an error (TimToady++).
  • Loading branch information
jnthn committed Jul 26, 2011
1 parent eb38b99 commit 08c2f9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/Metamodel/RoleToClassApplier.pm
Expand Up @@ -35,9 +35,9 @@ my class RoleToClassApplier {
for @collisions {
unless has_method($target, $_.name, 1) {
pir::die("Method '" ~ $_.name ~
"' must be resolved by class '" ~
"' must be resolved by class " ~
$target.HOW.name($target) ~
"' because it exists in multiple roles (" ~
" because it exists in multiple roles (" ~
pir::join(", ", $_.roles) ~ ")");
}
}
Expand Down

0 comments on commit 08c2f9c

Please sign in to comment.