summaryrefslogtreecommitdiff
path: root/example.lua
diff options
context:
space:
mode:
Diffstat (limited to 'example.lua')
-rw-r--r--example.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/example.lua b/example.lua
index 47d25c6..d0f6a72 100644
--- a/example.lua
+++ b/example.lua
@@ -20,7 +20,7 @@ assert(a:is(Object)) -- use `is()` method for it
local Foo = Point:extends() -- you can extend whatever class you want
function Foo:new (str, x, y)
- self.__super.new(self, x, y) -- call super constructor first
+ Foo.__super.new(self, x, y) -- call super constructor first
self.str = str -- do whatever else is left to be done
end