Apply suggestions from code review

This commit is contained in:
ajeffrey@roblox.com 2022-10-12 14:07:04 -05:00
parent 0d0c689b87
commit 2fc6854cac

View file

@ -191,7 +191,7 @@ The other difference between Luaus type system and off-the-shelf semantic sub
The common case for wanting negated types is in typechecking conditionals:
```lua
-- initially x has type T
if (type(x) == “string”) then
if (type(x) == "string") then
-- in this branch x has type T & string
else
-- in this branch x has type T & ~string