Update rfcs/unsealed-table-assign-indexer.md

Co-authored-by: Andy Friesen <afriesen@roblox.com>
This commit is contained in:
Alan Jeffrey 2021-09-21 16:41:47 -05:00 committed by GitHub
parent 2660cfa97c
commit fe57e7fc92
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ the system to be unsound, for example:
```lua
local t = { u = {} }
local u : { p = 37 } = { p = 37, q = "hi" }
local u : { p: number } = { p = 37, q = "hi" }
t = { u = u }
local x: number? = t.u["p"]
local y: number? = t.u["q"] -- This is "hi" at run-time