From 17554293afabc567c6417aef52d08533d8e358c3 Mon Sep 17 00:00:00 2001 From: FatalErr42O <58855799+FatalError42O@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:02:09 -0800 Subject: [PATCH] fix a typo in instantiatable_class --- new_class.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new_class.lua b/new_class.lua index ec50681..b50eab5 100644 --- a/new_class.lua +++ b/new_class.lua @@ -1,4 +1,4 @@ ---- An instantiatable class to inherit for defining new instantiatble classes classes +--- An instantiatable class to inherit for defining new instantiatable classes classes -- the "base" class. To make a new class call `new_class:inherit(your_new_class)`. -- Also note that these classes will not have the type `table` but instead `class` when `type(object)` is called. -- This is apart of the [LEEF-class](https://github.com/Luanti-Extended-Engine-Features/LEEF-class) module