From 42e7493280cbed9f1d4bdda1e40f4609979110da Mon Sep 17 00:00:00 2001 From: alicesaidhi <166900055+alicesaidhi@users.noreply.github.com> Date: Wed, 26 Feb 2025 08:39:20 +0100 Subject: [PATCH] Correct `:readparent()` and `:writeparent()` for `:parent()` --- docs/user-defined-type-functions.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/user-defined-type-functions.md b/docs/user-defined-type-functions.md index 2daf006..21c68b6 100644 --- a/docs/user-defined-type-functions.md +++ b/docs/user-defined-type-functions.md @@ -189,8 +189,7 @@ Depending on the particular `tag`, a `type` instance can have additional propert | Instance Methods | Return Type | Description | | ------------- | ------------- | ------------- | | `properties()` | `{[type]: { read: type, write: type } }` | returns a table mapping class' property keys to a table with their respective read and write types | -| `readparent()` | `type?` | returns the read type of class' parent class; if the parent class does not exist, returns nil | -| `writeparent()` | `type?` | returns the write type class' parent class; if the parent class does not exist, returns nil | +| `parent()` | `type?` | returns the type of class' parent class; if the parent class does not exist, returns nil | | `metatable()` | `type?` | returns the class' metatable; if the metatable does not exists, returns nil | | `indexer()` | `{ index: type, readresult: type, writeresult: type }?` | returns the class' indexer as a table; if the indexer does not exist, returns nil | | `readindexer()` | `{ index: type, result: type }?` | returns the class' indexer as a table using the read type of the result; if the indexer does not exist, returns nil |