Update docs/index-type-operator.md

fixed a small typo regarding the type of `param` (for line 44)

Co-authored-by: Dev Chrysalis Dalal <102641218+deviaze@users.noreply.github.com>
This commit is contained in:
Junseo Yoo 2024-05-30 14:31:47 -07:00 committed by GitHub
parent a17cfd48d6
commit b0c5b71aef
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ type Person = {
alive: boolean
}
local function doSmt(param: index<Person, "age">) -- param = string
local function doSmt(param: index<Person, "age">) -- param = number
-- rest of code
end