fix: change variable asserted and provide 2nd arg

This commit is contained in:
Matthew Pagan 2021-08-04 10:35:19 -04:00 committed by GitHub
parent e9db7cd1dc
commit 22ead5220a
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -347,7 +347,7 @@ And using `assert` will work with the above type guards:
```lua
local stringOrNumber: string | number = "foo"
assert(type(x) == "string")
assert(type(stringOrNumber) == "string", "stringOrNumber is a string")
local onlyString: string = stringOrNumber -- ok
local onlyNumber: number = stringOrNumber -- not ok