From f3a248d1a9203e3ef8f8f161c71711226ec06a1a Mon Sep 17 00:00:00 2001 From: Alan Jeffrey <403333+asajeffrey@users.noreply.github.com> Date: Wed, 27 Oct 2021 11:24:47 -0500 Subject: [PATCH] Remove warning about generic functions being disabled (#90) --- docs/_pages/typecheck.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/_pages/typecheck.md b/docs/_pages/typecheck.md index 5f2aba6..6c00b54 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -190,8 +190,6 @@ 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)