summaryrefslogtreecommitdiff
path: root/yjit.rb
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2022-12-12 15:13:46 -0500
committerGitHub <noreply@github.com>2022-12-12 15:13:46 -0500
commit1004d693b7a3db5db98be59a3d3d468d2ee21ca5 (patch)
tree31edb6e49fb2dc3a3dd2b9e3fbdc4ec4be8718f5 /yjit.rb
parent8e619b8e0ebbfd2e6ceb9fa69d67846796eb716e (diff)
downloadruby-1004d693b7a3db5db98be59a3d3d468d2ee21ca5.tar.gz
Make it so YJIT is no longer marked as experimental (#6909)
Tested on production workloads at Shopify for > 1 year and proven to be quite stable. Enabling YJIT at run-time is still guarded behind the --yjit command-line option for now.
Diffstat (limited to 'yjit.rb')
-rw-r--r--yjit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit.rb b/yjit.rb
index a487f23b52..0103c7c124 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-# This module allows for introspection of YJIT, CRuby's experimental in-process
+# This module allows for introspection of YJIT, CRuby's in-process
# just-in-time compiler. This module exists only to help develop YJIT, as such,
# everything in the module is highly implementation specific and comes with no
# API stability guarantee whatsoever.