From 1ee69688553270b2a0a5d834d06615089effe02a Mon Sep 17 00:00:00 2001 From: Edwin Garcia Date: Fri, 10 Nov 2023 04:50:56 -0600 Subject: [PATCH] YJIT: Fix comment typos [ci skip] --- yjit/src/options.rs | 4 ++-- 1 file 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]