Update rfcs/recursive-type-restriction.md

Co-authored-by: Alan Jeffrey <403333+asajeffrey@users.noreply.github.com>
This commit is contained in:
vegorov-rbx 2021-09-23 20:59:37 +03:00 committed by GitHub
parent 32591847c4
commit c7d808aee8
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
## Motivation
Luau supports reclusive type aliases, but with an important restriction:
Luau supports recursive type aliases, but with an important restriction:
users can declare functions of recursive types, such as:
```lua
type Tree<a> = { data: a, children: {Tree<a>} }