updated toc...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-05-08 16:32:54 +03:00
parent 4ea6f58013
commit c73b453205
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class B extends A {
- [`makeRawInstance(..)`](#makerawinstance) - [`makeRawInstance(..)`](#makerawinstance)
- [`Constructor(..)` / `C(..)`](#constructor--c) - [`Constructor(..)` / `C(..)`](#constructor--c)
- [Utilities](#utilities) - [Utilities](#utilities)
- [`normalizeIndent(..)`](#normalizeindent) - [`normalizeIndent(..)` / `normalizeTextIndent(..)`](#normalizeindent--normalizetextindent)
- [`match(..)`](#match) - [`match(..)`](#match)
- [Limitations](#limitations) - [Limitations](#limitations)
- [Can not mix unrelated native types](#can-not-mix-unrelated-native-types) - [Can not mix unrelated native types](#can-not-mix-unrelated-native-types)

View File

@ -431,7 +431,7 @@ function(base, ...objects){
// NOTE: we are removing on a separate stage so as not to mess with // NOTE: we are removing on a separate stage so as not to mess with
// mixins(..) iterating... // mixins(..) iterating...
remove remove
// XXX // XXX not sure why this is needed, needs thought...
.reverse() .reverse()
.forEach(function(p){ .forEach(function(p){
p.__proto__ = p.__proto__.__proto__ }) p.__proto__ = p.__proto__.__proto__ })