Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix minor typo in error message
(also match error message on Moar)
  • Loading branch information
usev6 committed Mar 16, 2015
1 parent 21f01b0 commit 04d15d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/rakudo/Binder.java
Expand Up @@ -398,7 +398,7 @@ else if (desiredNative == 0) {
if ((paramFlags & SIG_ELEM_DEFINED_ONLY) != 0 && Ops.isconcrete(arg_o, tc) != 1) {
if (error != null) {
if ((paramFlags & SIG_ELEM_INVOCANT) != 0) {
error[0] = "Invocant requires a instance, but a type object was passed";
error[0] = "Invocant requires an instance, but a type object was passed";
}
else {
error[0] = String.format(
Expand Down

0 comments on commit 04d15d4

Please sign in to comment.