diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md index 42dcf83..4a98c07 100644 --- a/docs/generic-constraints.md +++ b/docs/generic-constraints.md @@ -23,7 +23,7 @@ local function callbackProperty( object: T, key: keyof, callback: (propert It is impossible to tell whether or not `key` is the same variable being used to index `T` in the callback, and thus Luau infers the type of `property` to be `number | string`. ```luau local function callbackProperty( object: T, key: keyof, callback: (property: index) -> () ) -... +.... ``` This does not work in Luau. > Ideally, this behaviour should work out of the box, but, could be solved with bounded polymorphism.