diff --git a/docs/_pages/typecheck.md b/docs/_pages/typecheck.md index 8ae2ff97..14b8463d 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -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