remove optional second arg

This commit is contained in:
Matthew Pagan 2021-08-04 12:22:40 -04:00 committed by GitHub
parent 22ead5220a
commit 73f6bd9b6b
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(stringOrNumber) == "string", "stringOrNumber is a string")
assert(type(stringOrNumber) == "string")
local onlyString: string = stringOrNumber -- ok
local onlyNumber: number = stringOrNumber -- not ok