summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2017-07-26 03:10:41 +0200
committerAki <nthirtyone@gmail.com>2017-07-26 03:10:41 +0200
commit0866dec8387a5ce6d5a547338147beda932114dc (patch)
tree02ff6ba2f3d4179230fee679cd8238ac1cc14fd7 /readme.md
parenteacf0f60c0752616407fbca6cd9d8ca9757ce624 (diff)
downloadobject-0866dec8387a5ce6d5a547338147beda932114dc.zip
object-0866dec8387a5ce6d5a547338147beda932114dc.tar.gz
object-0866dec8387a5ce6d5a547338147beda932114dc.tar.bz2
Usage of self.__super is discouraged
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 77f7461..99ad13b 100644
--- a/readme.md
+++ b/readme.md
@@ -26,7 +26,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