summaryrefslogtreecommitdiff
path: root/yjit/src/invariants.rs
diff options
context:
space:
mode:
authorAlan Wu <alanwu@ruby-lang.org>2023-02-02 16:16:45 -0500
committerAlan Wu <alanwu@ruby-lang.org>2023-02-02 16:16:45 -0500
commit92ac5f686b72942c9709a8f3e07f45f6a44ebc6b (patch)
treec5e270ce94daf68757f534912f89dd3429a9578b /yjit/src/invariants.rs
parent3b83b265f11965582d4b9b439eff8a501792ab68 (diff)
downloadruby-92ac5f686b72942c9709a8f3e07f45f6a44ebc6b.tar.gz
Fix typos in YJIT [ci skip]
Diffstat (limited to 'yjit/src/invariants.rs')
-rw-r--r--yjit/src/invariants.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/src/invariants.rs b/yjit/src/invariants.rs
index 734b32c464..48920ea0a6 100644
--- a/yjit/src/invariants.rs
+++ b/yjit/src/invariants.rs
@@ -327,7 +327,7 @@ pub extern "C" fn rb_yjit_root_mark() {
// Why not let the GC move the cme keys in this table?
// Because this is basically a compare_by_identity Hash.
// If a key moves, we would need to reinsert it into the table so it is rehashed.
- // That is tricky to do, espcially as it could trigger allocation which could
+ // That is tricky to do, especially as it could trigger allocation which could
// trigger GC. Not sure if it is okay to trigger GC while the GC is updating
// references.
//