From 149469e745e57199e5086aa75f64a44cec17483f Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Tue, 6 Jul 2021 21:35:03 +0300 Subject: [PATCH] Add another equality operator --- docs/_posts/2021-06-30-luau-recap-june-2021.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2021-06-30-luau-recap-june-2021.md b/docs/_posts/2021-06-30-luau-recap-june-2021.md index 67aa8e96..0ee6aa18 100644 --- a/docs/_posts/2021-06-30-luau-recap-june-2021.md +++ b/docs/_posts/2021-06-30-luau-recap-june-2021.md @@ -19,7 +19,7 @@ Type guards support include expressions like: * `if enum:IsA("EnumName") then` * `if type(v) == "string" then` -This framework is extensible and we have plans for future improvements with `a == b` equality constraints and handling of table field assignments. +This framework is extensible and we have plans for future improvements with `a == b`/`a ~= b` equality constraints and handling of table field assignments. It is now also possible to get better type information inside `else` blocks of an `if` statement.