Remove warning about generic functions being disabled (#90)

This commit is contained in:
Alan Jeffrey 2021-10-27 11:24:47 -05:00 committed by GitHub
parent 2341b5014e
commit f3a248d1a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -190,8 +190,6 @@ local numbers: Pair<number> = {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<T>`, 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)