Skip to content

Commit 748510c

Browse files
committed
Update description of the --virtual-thread-fibers option
1 parent db4908a commit 748510c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ EXPERT:
103103
LAZY_TRANSLATION_USER: [lazy-translation-user, boolean, LAZY_CALLTARGETS, 'Lazily translation of stdlib, gem and user source files']
104104
PATCHING: [patching, boolean, true, Use patching]
105105
HASHING_DETERMINISTIC: [hashing-deterministic, boolean, false, Produce deterministic hash values]
106-
VIRTUAL_THREAD_FIBERS: [virtual-thread-fibers, boolean, false, 'Use JDK 19+ VirtualThread for Fibers, also requires --vm.-enable-preview']
106+
VIRTUAL_THREAD_FIBERS: [virtual-thread-fibers, boolean, false, 'Use VirtualThread for Fibers']
107107
LOG_SUBPROCESS: [log-subprocess, boolean, false, 'Log whenever a subprocess is created'] # Also see --log-process-args
108108
WARN_LOCALE: [warn-locale, boolean, true, 'Warn when the system locale is not set properly']
109109

src/shared/java/org/truffleruby/shared/options/OptionsCatalog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public final class OptionsCatalog {
415415

416416
public static final OptionDescriptor VIRTUAL_THREAD_FIBERS = OptionDescriptor
417417
.newBuilder(VIRTUAL_THREAD_FIBERS_KEY, "ruby.virtual-thread-fibers")
418-
.help("Use JDK 19+ VirtualThread for Fibers, also requires --vm.-enable-preview")
418+
.help("Use VirtualThread for Fibers")
419419
.category(OptionCategory.EXPERT)
420420
.stability(OptionStability.EXPERIMENTAL)
421421
.usageSyntax("")

0 commit comments

Comments
 (0)