From 88e5df56e78abfbb848e731aa0a04565c2c45c2d Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 7 May 2020 21:53:31 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4428329..9869d30 100755 --- a/README.md +++ b/README.md @@ -272,7 +272,6 @@ user's responsibility to call `.__call__(..)` method. Prototype-based mixin... ```javascript - var utilityMixin = { utility: function(){ // ... @@ -432,7 +431,8 @@ var myArray = object.Constructor('myArray', Array, { Note that all of the following are generic and will work on any relevant JavaScript object. -For example, this will happily create a normal native array object `['a', 'b', 'c']`: +For example, this will happily create a normal native array object +`['a', 'b', 'c']`: ```javascript var l = object.makeRawInstance(null, Array, 'a', 'b', 'c') ```