From 421be7551bdf2c9eb7f7feef57ee6f12965f2072 Mon Sep 17 00:00:00 2001 From: Junseo Yoo Date: Mon, 24 Jun 2024 16:24:36 -0700 Subject: [PATCH] addressing comment: boolean is equivalent to true | false --- docs/user-defined-type-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-defined-type-functions.md b/docs/user-defined-type-functions.md index 34e540b..3ee1800 100644 --- a/docs/user-defined-type-functions.md +++ b/docs/user-defined-type-functions.md @@ -48,7 +48,7 @@ Note: methods under a different type heading (ex: `Singleton`) imply that the me | ------------- | ------------- | ------------- | | `isstring()` | `boolean` | returns true if self is of type `string` | | `isnumber()` | `boolean` | returns true if self is of type `number` | -| `isboolean()` | `boolean` | returns true if self is of type `boolean` | +| `isboolean()` | `boolean` | returns true if self is of type `boolean` (e.g. true or false) | | `istable()` | `boolean` | returns true if self is of type `table` | | `isthread()` | `boolean` | returns true if self is of type `thread` | | `isfunction()` | `boolean` | returns true if self is of type `function` |