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(..)`