From 4c3505c735722bda36e0663c2d9bb5955af88a45 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 6 May 2020 14:59:55 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4b6adc5..a9b6321 100755 --- a/README.md +++ b/README.md @@ -433,9 +433,13 @@ var myArray = object.Constructor('myArray', Array, { ## Components -Note that all of the bellow are generic and will work on any JavaScript -object, e.g. `object.makeRawInstance(null, Array, 'a', 'b', 'c')` will -happily produce `['a', 'b', 'c']` and so on... +Note that all of the following are generic and will work on any relevant +JavaScript object. + +For example this will happily create and array `['a', 'b', 'c']`... +```javascript +var l = object.makeRawInstance(null, Array, 'a', 'b', 'c') +``` ### `sources(..)`