summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2024-11-25 14:32:19 -0500
committerGitHub <noreply@github.com>2024-11-25 19:32:19 +0000
commit081bdc512543a5f25251ed2b708e8761828dd704 (patch)
treef9b4bdc94c84c133dd5f19dece857a835bc2cb0e
parentcdd47436ae31e7cf90d35da74736506de03d427c (diff)
YJIT: fix small typo in command line options help (#12167)
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
-rw-r--r--yjit/src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/src/options.rs b/yjit/src/options.rs
index 51483bead1..bd1882dd0b 100644
--- a/yjit/src/options.rs
+++ b/yjit/src/options.rs
@@ -121,7 +121,7 @@ pub const YJIT_OPTIONS: &'static [(&str, &str)] = &[
("--yjit-call-threshold=num", "Number of calls to trigger JIT."),
("--yjit-cold-threshold=num", "Global calls after which ISEQs not compiled (default: 200K)."),
("--yjit-stats", "Enable collecting YJIT statistics."),
- ("--yjit--log[=file|dir]", "Enable logging of YJIT's compilation activity."),
+ ("--yjit-log[=file|dir]", "Enable logging of YJIT's compilation activity."),
("--yjit-disable", "Disable YJIT for lazily enabling it with RubyVM::YJIT.enable."),
("--yjit-code-gc", "Run code GC when the code size reaches the limit."),
("--yjit-perf", "Enable frame pointers and perf profiling."),