Skip to content

Commit c5fed38

Browse files
committed
Deal with other mentioning of "rope" term
1 parent 75de885 commit c5fed38

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/org/truffleruby/core/CoreLibrary.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,6 @@ public CoreLibrary(RubyContext context, RubyLanguage language) {
499499
defineModule(truffleModule, "ObjSpace");
500500
defineModule(truffleModule, "Coverage");
501501
defineModule(truffleModule, "Graal");
502-
defineModule(truffleModule, "Ropes");
503502
truffleRegexpOperationsModule = defineModule(truffleModule, "RegexpOperations");
504503
truffleStringOperationsModule = defineModule(truffleModule, "StringOperations");
505504
truffleBootModule = defineModule(truffleModule, "Boot");

src/main/java/org/truffleruby/core/regexp/TruffleRegexpNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ private RubyHash buildMatchInfoStatsHash(HashStoreLibrary hashStoreLibrary, Matc
726726
buildAndSetDistributionHash(
727727
hashStoreLibrary,
728728
ret,
729-
"rope_types",
729+
"string_types",
730730
stats.tstringClassFrequencies,
731731
Optional.of(className -> StringOperations.createUTF8String(getContext(), getLanguage(), className)),
732732
Optional.of(count -> count.get()));

0 commit comments

Comments
 (0)