From 2dc487306449fb8b1e2b473f2f84bc17aadacc60 Mon Sep 17 00:00:00 2001 From: witchiest <62822174+gaymeowing@users.noreply.github.com> Date: Tue, 1 Apr 2025 23:43:23 -0400 Subject: [PATCH] Specifiy subtyping algorithm --- docs/method-type-issubtypeof.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/method-type-issubtypeof.md b/docs/method-type-issubtypeof.md index a81b9f7..6b77bc5 100644 --- a/docs/method-type-issubtypeof.md +++ b/docs/method-type-issubtypeof.md @@ -105,7 +105,7 @@ The [`type`](./user-defined-type-functions.md#type-instance) will gain a new met type:issubtypeof(arg: type): boolean ``` -This method will return a boolean indicating if the type is a subtype of `arg`. +This method will return a boolean indicating if the type is a subtype of `arg`, using luau's existing subtyping algorithm. ## Drawbacks