From 8d712c47b66d330982f8e95438e3198808bc6e0e Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 31 Mar 2021 20:12:43 -0700 Subject: [PATCH] Update typecheck.md --- docs/_pages/typecheck.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/_pages/typecheck.md b/docs/_pages/typecheck.md index 00a3a6a9..bdce8b09 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -190,6 +190,8 @@ local numbers: Pair = {first=1, second=2} ## Generic functions +**WARNING** Generic functions are currently disabled as we're fixing some critical bugs. + As well as generic type aliases like `Pair`, Luau supports generic functions. These are functions that, as well as their regular data parameters, take type parameters. For example, a function which reverses an array is: ```lua function reverse(a)