diff --git a/README.md b/README.md index 391af92..3b8fb70 100755 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ class B extends A { - [`makeRawInstance(..)`](#makerawinstance) - [`Constructor(..)` / `C(..)`](#constructor--c) - [Utilities](#utilities) - - [`normalizeIndent(..)`](#normalizeindent) + - [`normalizeIndent(..)` / `normalizeTextIndent(..)`](#normalizeindent--normalizetextindent) - [`match(..)`](#match) - [Limitations](#limitations) - [Can not mix unrelated native types](#can-not-mix-unrelated-native-types) diff --git a/object.js b/object.js index 66e6bbb..e93116e 100755 --- a/object.js +++ b/object.js @@ -431,7 +431,7 @@ function(base, ...objects){ // NOTE: we are removing on a separate stage so as not to mess with // mixins(..) iterating... remove - // XXX + // XXX not sure why this is needed, needs thought... .reverse() .forEach(function(p){ p.__proto__ = p.__proto__.__proto__ })