From d98524178697224a141b6fac7e69407f3d04e9f9 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 23 Sep 2017 19:04:44 +0300 Subject: [PATCH] minor typo fix... Signed-off-by: Alex A. Naanou --- Slang/slang.html | 2 +- js-oop.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Slang/slang.html b/Slang/slang.html index b0f156c..4896af6 100755 --- a/Slang/slang.html +++ b/Slang/slang.html @@ -230,7 +230,7 @@ function showAvailableWords(){

Available words

- This section includes constants (red) ond constant-like + This section includes constants (red) and constant-like words (words that allways yield the same value), built-in words (blue), and 2'nd gen words (black):

diff --git a/js-oop.js b/js-oop.js index 829ff65..dea493d 100755 --- a/js-oop.js +++ b/js-oop.js @@ -87,8 +87,8 @@ // on most systems. // // NOTE: we did not see .__proto__ in the list of accessible attributes -// because it is a special attribute, it is implemented internally -// and is not enumerable. +// because it is a special attribute (property), it is implemented +// internally and is not enumerable. // NOTE: cyclic prototype chains are actively not allowed, e.g. creating // a chain like the following will fail: // var a = {}