From aaac22f6c2058308a0a4660190c1efd381ffd3ad Mon Sep 17 00:00:00 2001 From: ayazhafiz Date: Sun, 6 Feb 2022 13:51:13 -0500 Subject: [PATCH] Respell typo --- compiler/unify/src/unify.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/unify/src/unify.rs b/compiler/unify/src/unify.rs index e953dfe149..421cc6f61d 100644 --- a/compiler/unify/src/unify.rs +++ b/compiler/unify/src/unify.rs @@ -72,7 +72,7 @@ bitflags! { /// Usually rigids can only unify with flex vars, because rigids are named and bound /// explicitly. /// However, when checking type ranges, as we do for `RangedNumber` types, we must loosen - /// this restriction because otherwise an admissable range will appear inadmissable. + /// this restriction because otherwise an admissible range will appear inadmissible. /// For example, Int * is in the range . const RIGID_AS_FLEX = 1 << 2; }