mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Update generic-constraints.md
fixed a code error
This commit is contained in:
parent
60032131e2
commit
e29d515a27
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ local function callbackProperty<T, K & keyof<T>>( object: T, key: K, callback: (
|
|||
callback( object[key] )
|
||||
end
|
||||
|
||||
callbackProperty( object, "foo", function( foo )
|
||||
callbackProperty( qux, "foo", function( foo )
|
||||
-- foo: number -- this is expected!
|
||||
end)
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue