From 582d24b9d4b97d4fbb9e258e7135ca5c5f280a79 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 6 May 2020 19:34:10 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3d2c791..9442197 100755 --- a/README.md +++ b/README.md @@ -384,9 +384,7 @@ var C = object.Constructor('C', And the same thing while extending... ```javascript -var D = object.Constructor('D', C, - // this will get mixed into C(..)... - { +var D = object.Constructor('D', C, { // ... }, { // ... @@ -536,7 +534,7 @@ This is the opposite of `mixin(..)` ### `mixinFlat(..)` -Mixin contents of objects into one +Mixin contents of objects into one _base_ object ``` mixinFlat(, , ..) -> @@ -564,9 +562,6 @@ makeRawInstance(, , ..) - Link the object into the prototype chain -A shorthand to this is `Constructor.__rawinstance__(context, ..)`. - - ### `Constructor(..)` / `C(..)` Define an object constructor