Skip to content

Commit ca223b2

Browse files
committed
[jvm] Fix typo in error message
1 parent 01da9b0 commit ca223b2

File tree

1 file changed

+1
-1
lines changed
  • src/vm/jvm/runtime/org/perl6/nqp/runtime

1 file changed

+1
-1
lines changed

src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ public static SixModelObject bindlexdyn(SixModelObject value, String name, Threa
16381638
}
16391639
curFrame = curFrame.caller;
16401640
}
1641-
throw ExceptionHandling.dieInternal(tc, "Dyanmic variable '" + name + "' not found");
1641+
throw ExceptionHandling.dieInternal(tc, "Dynamic variable '" + name + "' not found");
16421642
}
16431643
public static SixModelObject getlexdyn(String name, ThreadContext tc) {
16441644
CallFrame curFrame = tc.curFrame.caller;

0 commit comments

Comments
 (0)