Spellcheck

This commit is contained in:
Ayaz Hafiz 2022-05-06 12:21:42 -04:00
parent 9e35cf9060
commit 2aeb06c9cb
No known key found for this signature in database
GPG Key ID: 0E2A37416A25EF58

View File

@ -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<Symbol, VecMap<SpecializationMark<'a>, (Variable, Symbol)>>,
);