From c2f7f46fbc16f76bb423d40bfdfdd34b1de08c98 Mon Sep 17 00:00:00 2001 From: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> Date: Tue, 30 Nov 2021 08:40:49 -0800 Subject: [PATCH] Update docs/_pages/typecheck.md 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 cc2a13eb..68415de9 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -323,7 +323,7 @@ type C = A -- with a generic type pack type D = A -- with an empty type pack ``` -Trailing type packs arguments can also be provided without parentheses as variadic type arguments: +Trailing type pack argument can also be provided without parentheses by specifying variadic type arguments: ```lua type List = (Head, Rest...) -> ()