Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
This commit is contained in:
Lily Brown 2021-03-26 16:04:05 -07:00 committed by GitHub
parent ef9edc8fd0
commit 13e4134999
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -248,7 +248,7 @@ f(1, "string") -- not ok
`f` accepts any number of `number` values.
In type annotations, this is written `...T`:
In type annotations, this is written as `...T`:
```lua
type F = (...number) -> ...string