mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-06 11:30:56 +01:00
Update generic-constraints.md
added extra . for clarity and consistency
This commit is contained in:
parent
000a18b905
commit
dd7650a44b
1 changed files with 1 additions and 1 deletions
|
@ -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`.
|
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
|
```luau
|
||||||
local function callbackProperty<T>( object: T, key: keyof<T>, callback: (property: index<T, K>) -> () )
|
local function callbackProperty<T>( object: T, key: keyof<T>, callback: (property: index<T, K>) -> () )
|
||||||
...
|
....
|
||||||
```
|
```
|
||||||
This does not work in Luau.
|
This does not work in Luau.
|
||||||
> Ideally, this behaviour should work out of the box, but, could be solved with bounded polymorphism.
|
> Ideally, this behaviour should work out of the box, but, could be solved with bounded polymorphism.
|
||||||
|
|
Loading…
Add table
Reference in a new issue