minor typo fix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2017-09-23 19:04:44 +03:00
parent 2b734818f8
commit d985241786
2 changed files with 3 additions and 3 deletions

View File

@ -230,7 +230,7 @@ function showAvailableWords(){
<div id="bootstrap"></div> <div id="bootstrap"></div>
<h2>Available words</h2> <h2>Available words</h2>
<p> <p>
This section includes constants (red) ond constant-like This section includes constants (red) and constant-like
words (words that allways yield the same value), words (words that allways yield the same value),
built-in words (blue), and 2'nd gen words (black): built-in words (blue), and 2'nd gen words (black):
</p> </p>

View File

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