From 48b3386f6a63f6ae3944441c428aeb6baf5612ba Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 23 Sep 2024 16:40:20 -0700 Subject: [PATCH] Fix a typo --- yjit/src/core.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yjit/src/core.rs b/yjit/src/core.rs index 1f96dd453f..b29b3f1d1b 100644 --- a/yjit/src/core.rs +++ b/yjit/src/core.rs @@ -969,7 +969,7 @@ impl Context { let cache = CTX_CACHE.as_mut().unwrap(); - // Check that the context for this cache entry mmatches + // Check that the context for this cache entry matches let cache_entry = &cache[ctx_hash % CTX_CACHE_SIZE]; if cache_entry.0 == *ctx { debug_assert!(cache_entry.1 != 0);