Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #386 from usev6/nom
Fix minor typo in error message
  • Loading branch information
moritz committed Mar 16, 2015
2 parents 21f01b0 + 04d15d4 commit 46942b0
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 46942b0

Please sign in to comment.