Update docs/_pages/typecheck.md

This commit is contained in:
Arseny Kapoulkine 2021-03-31 14:24:35 -07:00 committed by GitHub
parent 8e1564f300
commit 713a3550f8
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -216,7 +216,7 @@ local x: {number} = reverse({1, 2, 3})
local y: {string} = reverse({"a", "b", "c"})
```
Generic types are used for built-in functions as well as user functions,
for example the type of `table.insert` is:
for example the type of two-argument `table.insert` is:
```lua
<T>({T}, T) -> ()
```