diff --git a/docs/01.CONFIGURATION.md b/docs/01.CONFIGURATION.md index c22f5f149..57c32155e 100644 --- a/docs/01.CONFIGURATION.md +++ b/docs/01.CONFIGURATION.md @@ -152,7 +152,7 @@ This feature is disabled by default. ### LCache -This option enables the LCache, allowing faster access to object properties. The LCache usases a statically allocated hash-map, which increases memory consumption. +This option enables the LCache, allowing faster access to object properties. The LCache uses a statically allocated hash-map, which increases memory consumption. See [Internals](04.INTERNALS.md#lcache) for further details. This option is enabled by default. diff --git a/jerry-core/profiles/README.md b/jerry-core/profiles/README.md index 21d608ec9..cb713e3ce 100644 --- a/jerry-core/profiles/README.md +++ b/jerry-core/profiles/README.md @@ -103,7 +103,7 @@ defined to `1`. * `JERRY_BUILTIN_MAP`: Enables or disables the [Map](http://www.ecma-international.org/ecma-262/6.0/#sec-keyed-collection) built-ins. * `JERRY_BUILTIN_SET`: - Enables or disables the [SET](https://www.ecma-international.org/ecma-262/6.0/#sec-set-objects) built-in. + Enables or disables the [Set](https://www.ecma-international.org/ecma-262/6.0/#sec-set-objects) built-in. * `JERRY_BUILTIN_PROMISE`: Enables or disables the [Promise](http://www.ecma-international.org/ecma-262/6.0/#sec-promise-objects) built-in. * `JERRY_BUILTIN_TYPEDARRAY`: @@ -123,6 +123,7 @@ defined to `1`. * [rest parameter](http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions) language element. * [symbol](https://www.ecma-international.org/ecma-262/6.0/#sec-symbol-objects) language element. * [template strings](http://www.ecma-international.org/ecma-262/6.0/#sec-static-semantics-templatestrings) language element. + Furthermore all builtins follow the latest ECMAScript specification including those which behave differently in ES5.1. This option is evaulated first, any other `JERRY_` defines will override that specific entry. Equivalent with setting the following defines to the `JERRY_ESNEXT` value: