comment: ~ to not

This commit is contained in:
Junseo Yoo 2024-07-01 11:50:16 -07:00
parent 96611f14cb
commit 1ad250d1c4

View file

@ -25,7 +25,7 @@ end
For instance, the `rawget` type function can be written as:
```luau
type function rawget(tbl, prop)
if (~tbl:istable()) then
if (not tbl:istable()) then
error("First parameter of rawget is not a table!") -- fails to reduce
end