aboutsummaryrefslogtreecommitdiffstats
path: root/yjit
diff options
context:
space:
mode:
authorEdwin Garcia <egarciavalle2014@gmail.com>2023-11-10 04:50:56 -0600
committerAlan Wu <alanwu@ruby-lang.org>2023-11-10 09:47:56 -0500
commit1ee69688553270b2a0a5d834d06615089effe02a (patch)
treee2f57e6f99e13604e17e39ce49e9037b90f978b2 /yjit
parent068bf59b336e299d42c399f72557e054b714a406 (diff)
downloadruby-1ee69688553270b2a0a5d834d06615089effe02a.tar.gz
YJIT: Fix comment typos [ci skip]
Diffstat (limited to 'yjit')
-rw-r--r--yjit/src/options.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit/src/options.rs b/yjit/src/options.rs
index 3980eae0ae..2c45b91710 100644
--- a/yjit/src/options.rs
+++ b/yjit/src/options.rs
@@ -11,13 +11,13 @@ pub static LARGE_CALL_THRESHOLD: u64 = 120;
// Number of live ISEQs after which we consider an app to be large
pub static LARGE_ISEQ_COUNT: u64 = 40_000;
-// This option is exposed to the C side a a global variable for performance, see vm.c
+// This option is exposed to the C side in a global variable for performance, see vm.c
// Number of method calls after which to start generating code
// Threshold==1 means compile on first execution
#[no_mangle]
pub static mut rb_yjit_call_threshold: u64 = SMALL_CALL_THRESHOLD;
-// This option is exposed to the C side a a global variable for performance, see vm.c
+// This option is exposed to the C side in a global variable for performance, see vm.c
// Number of execution requests after which a method is no longer
// considered hot. Raising this results in more generated code.
#[no_mangle]