diff --git a/docs/generic-constraints.md b/docs/generic-constraints.md index daad262..0fb0262 100644 --- a/docs/generic-constraints.md +++ b/docs/generic-constraints.md @@ -40,7 +40,7 @@ The following snippet would also thus be correctly inferred. ```lua local qux = { foo = 10, bar = "string" } -local function callbackProperty( object: T, key: K, callback: (index) -> () ) +local function callbackProperty>( object: T, key: K, callback: (index) -> () ) callback( object[key] ) end @@ -51,7 +51,7 @@ end) An alternative syntax could be the following, but does not satisfy current requirements about `:` only being used inside `()` and `{}`, and personally does not look as good. ```lua local function getProperty>( object: T, key: K ) ... end -local function callbackProperty( object: T, key: K, callback: (index) -> () ) ... end +local function callbackProperty>( object: T, key: K, callback: (index) -> () ) ... end ``` ## Drawbacks - I am not personally familiar with the internals of the typechecker, but this has a chance to further complicate type inference.