From c4a19337fc44d5d071bcfb2d9d59b73abae2d5aa Mon Sep 17 00:00:00 2001 From: witchiest <62822174+gaymeowing@users.noreply.github.com> Date: Tue, 1 Apr 2025 11:00:37 -0400 Subject: [PATCH] Remove all refrences to hassubtypeof and replace them with issubtypeof --- ...thod-type-hassubtypeof.md => method-type-issubtypeof.md} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename docs/{method-type-hassubtypeof.md => method-type-issubtypeof.md} (97%) diff --git a/docs/method-type-hassubtypeof.md b/docs/method-type-issubtypeof.md similarity index 97% rename from docs/method-type-hassubtypeof.md rename to docs/method-type-issubtypeof.md index 31bb46f..4bc5180 100644 --- a/docs/method-type-hassubtypeof.md +++ b/docs/method-type-issubtypeof.md @@ -1,4 +1,4 @@ -# type:hassubtypeof +# type:issubtypeof ## Summary @@ -37,7 +37,7 @@ end Additionally it would be a pain for users to write a type function to be able to do subtype checks for any type. As the following example type function is already very long, despite not covering everything. ```luau -type function hassubtypeof(a, b) +type function issubtypeof(a, b) local false_type = types.singleton(false) local true_type = types.singleton(true) local is_subtype = false @@ -55,7 +55,7 @@ type function hassubtypeof(a, b) local conmponents_that_are_subtype = 0 for _, component in components do - if hassubtypeof(component):value() then + if issubtypeof(component):value() then conmponents_that_are_subtype += 1 end end