From 2aeb06c9cbcffd9bd428b4068f57070790c10120 Mon Sep 17 00:00:00 2001 From: Ayaz Hafiz Date: Fri, 6 May 2022 12:21:42 -0400 Subject: [PATCH] Spellcheck --- compiler/mono/src/ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/mono/src/ir.rs b/compiler/mono/src/ir.rs index 4dec2816fb..5dce7e8596 100644 --- a/compiler/mono/src/ir.rs +++ b/compiler/mono/src/ir.rs @@ -782,7 +782,7 @@ struct SymbolSpecializations<'a>( // 1. the number of symbols in a def is very small // 2. the number of specializations of a symbol in a def is even smaller (almost always only one) // So, a linear VecMap is preferrable. Use a two-layered one to make (1) extraction of defs easy - // and (2) reads of a certain symbol be determined by its first occurence, not its last. + // and (2) reads of a certain symbol be determined by its first occurrence, not its last. VecMap, (Variable, Symbol)>>, );