From b0c5b71aef06e62d2fa6c666643e6aa86f9560e5 Mon Sep 17 00:00:00 2001 From: Junseo Yoo <59751754+joonyoo181@users.noreply.github.com> Date: Thu, 30 May 2024 14:31:47 -0700 Subject: [PATCH] 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> --- docs/index-type-operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index-type-operator.md b/docs/index-type-operator.md index 99c899e..dd8751c 100644 --- a/docs/index-type-operator.md +++ b/docs/index-type-operator.md @@ -41,7 +41,7 @@ type Person = { alive: boolean } -local function doSmt(param: index) -- param = string +local function doSmt(param: index) -- param = number -- rest of code end