From 1f33e01c6a93e38604bba8d2f585399f9291812c Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 8 May 2020 04:24:09 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2166998..fe67db4 100755 --- a/README.md +++ b/README.md @@ -533,7 +533,7 @@ callback(, , ) ### `hasMixin(..)` -Check of object has mixin +Check if _base_ object has _mixin_ ``` hasMixin(, ) -> @@ -542,7 +542,7 @@ hasMixin(, ) ### `mixout(..)` -Remove the _first_ match for each input object out of a prototype chain +Remove the _first_ match matching input _mixin_ from _base_ of _base_ ``` mixout(, , ..) @@ -550,8 +550,7 @@ mixout(, 'first', , ..) -> ``` -Remove _all_ occurrences of each input object out of a prototype chain -of _base_ +Remove _all_ occurrences of each matching input _mixin_ from _base_ ``` mixout(, 'all', , ..) -> @@ -589,6 +588,8 @@ makeRawInstance(, , ..) - use `{}`. - Link the object into the prototype chain +_Un-initialized_ means this will not call `.__init__(..)` + ### `Constructor(..)` / `C(..)`