From e0f352a665ce8361e03919008f5e033b365cbd15 Mon Sep 17 00:00:00 2001 From: Junseo Yoo Date: Tue, 2 Jul 2024 14:16:06 -0700 Subject: [PATCH] small fix to reflect table method name change to class method names --- docs/user-defined-type-functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-defined-type-functions.md b/docs/user-defined-type-functions.md index 8a14f21..ebbf71b 100644 --- a/docs/user-defined-type-functions.md +++ b/docs/user-defined-type-functions.md @@ -191,8 +191,8 @@ All attributes of newly created typelib are initialized with empty tables / arra | `getprops()` | `{[typelib]: typelib}` | returns the runtime representation self's properties | | `getparent()` | `typelib \| nil` | returns the runtime representation of self's parent class if it exists, else nil | | `getmetatable()` | `typelib \| nil` | returns the runtime representation of self's metatable if it exists, else nil | -| `getindextype()` | `typelib` | returns self's index type | -| `getindexresulttype()` | `typelib` | returns self's index result type | +| `getindexerkeytype()` | `typelib` | returns self's indexer key type | +| `getindexervaluetype()` | `typelib` | returns self's indexer value type |