From 6b959dd236c6217fd3af90b6efe684c3e108471e Mon Sep 17 00:00:00 2001 From: Kiiyoko <73446312+Kiiyoko@users.noreply.github.com> Date: Fri, 13 Dec 2024 20:01:48 -0500 Subject: [PATCH] Update generic-constraints.md fixed wording regarding user-defined type functions --- docs/generic-constraints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md index 743f0a8..69e243b 100644 --- a/docs/generic-constraints.md +++ b/docs/generic-constraints.md @@ -110,7 +110,7 @@ multiply(10, vector.create(10, 10, 10)) -- okay! multiply(10, 41) -- okay! multiply(10, "hello!") -- error! add<10, "hello"> is not okay. ``` -The `multiply` function would be bounded by `T: number`, along with `mul`. This can be used to create any type of constraint if user-defined type functions exist in the future. +The `multiply` function would be bounded by `T: number`, along with `mul`. This can be used to create any type of constraint if user-defined type functions work with generics in the future. ## Drawbacks - There are no built-in inequality constraints nor not-subtyping constraints.