Skip to content

Commit b22a0e7

Browse files
committed
Fix copy-pasta.
1 parent 959164f commit b22a0e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vm/jvm/runtime/org/perl6/nqp/sixmodel/reprs/NativeRef.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ public SixModelObject allocate(ThreadContext tc, STable st) {
3232
obj = new NativeRefInstanceIntLex();
3333
break;
3434
case StorageSpec.BP_NUM:
35-
obj = new NativeRefInstanceIntLex();
35+
obj = new NativeRefInstanceNumLex();
3636
break;
3737
case StorageSpec.BP_STR:
38-
obj = new NativeRefInstanceIntLex();
38+
obj = new NativeRefInstanceStrLex();
3939
break;
4040
default:
4141
throw ExceptionHandling.dieInternal(tc,

0 commit comments

Comments
 (0)