From 13e41349992c81b642da0a511c884b559f29cc01 Mon Sep 17 00:00:00 2001 From: Lily Brown <31936135+AmaranthineCodices@users.noreply.github.com> Date: Fri, 26 Mar 2021 16:04:05 -0700 Subject: [PATCH] add 'as' Co-authored-by: Arseny Kapoulkine --- docs/_pages/typecheck.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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