Skip to content

Commit

Permalink
Fix thinko in error reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Sep 25, 2013
1 parent ded7250 commit 1e238c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/rakudo/RakOps.java
Expand Up @@ -448,7 +448,7 @@ public static SixModelObject p6store(SixModelObject cont, SixModelObject value,
if (thrower == null)
ExceptionHandling.dieInternal(tc, "Cannot assign to a non-container");
else
Ops.invokeDirect(tc, meth,
Ops.invokeDirect(tc, thrower,
storeThrower, new Object[] { });
}
}
Expand Down

0 comments on commit 1e238c8

Please sign in to comment.