Update generic-constraints.md

fixed tabs
This commit is contained in:
Kiiyoko 2024-12-13 18:58:17 -05:00 committed by GitHub
parent 6c02857435
commit 5c01bf5ce6
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,6 @@ This would match the current expectation of `:` being used to type annotate a va
2. Use a `where` clause.
```luau
local function getProperty<T, K where K: keyof<T>>( object: T, key: K ): index<T, K>
return object[ key ]
end