Add some symmetry.

This commit is contained in:
Alexander McCord 2022-09-26 13:52:57 -07:00 committed by GitHub
parent f33adc7e6e
commit 8706ff0c92
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ end
## `never` type
`never` is the _dual_ of `unknown`, meaning that there doesn't exist a value that inhabits the type `never`. `never` is useful in many scenarios, and one such use case is when type refinements proves it impossible:
`never` is also said to be the _bottom_ type, meaning there doesn't exist a value that inhabits the type `never`. In fact, it is the _dual_ of `unknown`. `never` is useful in many scenarios, and one such use case is when type refinements proves it impossible:
```lua
local x = unknown()