From 26423c58f396dac0f9a1bf99df2aad8ff552ec8e Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 7 May 2020 21:43:35 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c80941..4428329 100755 --- a/README.md +++ b/README.md @@ -432,7 +432,7 @@ 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 and array `['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') ```