addressing comment: boolean is equivalent to true | false

This commit is contained in:
Junseo Yoo 2024-06-24 16:24:36 -07:00
parent cde3866893
commit 421be7551b

View file

@ -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` |