diff --git a/docs/type-implicit-table-generics.md b/docs/type-implicit-table-generics.md index caf45a9..920a519 100644 --- a/docs/type-implicit-table-generics.md +++ b/docs/type-implicit-table-generics.md @@ -17,11 +17,11 @@ At an application level, the current workaround for this is to wrap the table in local foo = {} :: { [F]: G } -- public -local function getFoo(k: F): G +local function getFoo(k: F): G return foo[k] end -local function setFoo(k: F, v: G) +local function setFoo(k: F, v: G) foo[k] = v end