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(){
- 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 = {}