diff --git a/rfcs/recursive-type-restriction.md b/rfcs/recursive-type-restriction.md
index fb4ae17b..eb9b2124 100644
--- a/rfcs/recursive-type-restriction.md
+++ b/rfcs/recursive-type-restriction.md
@@ -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 = { data: a, children: {Tree} }