From d1f56c3af762fa48f02c466a0147c1afd4a5d6f2 Mon Sep 17 00:00:00 2001 From: witchiest <62822174+gaymeowing@users.noreply.github.com> Date: Tue, 1 Apr 2025 11:03:45 -0400 Subject: [PATCH] Add description for issubtypeof behavior --- docs/method-type-issubtypeof.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/method-type-issubtypeof.md b/docs/method-type-issubtypeof.md index 4bc5180..a81b9f7 100644 --- a/docs/method-type-issubtypeof.md +++ b/docs/method-type-issubtypeof.md @@ -105,6 +105,8 @@ 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`. + ## Drawbacks Adds another method to the type userdata in User-Defined type functions.