Update generic-constraints.md

added extra . for clarity and consistency
This commit is contained in:
Kiiyoko 2024-12-13 19:05:56 -05:00 committed by GitHub
parent 000a18b905
commit dd7650a44b
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ local function callbackProperty<T>( object: T, key: keyof<T>, 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<T>( object: T, key: keyof<T>, callback: (property: index<T, K>) -> () )
...
....
```
This does not work in Luau.
> Ideally, this behaviour should work out of the box, but, could be solved with bounded polymorphism.