From b469f0e9a82aec9d373b03f197bbb70c46f5d85e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Tue, 16 Jun 2020 18:54:36 +0200 Subject: [PATCH] Documentation typo fixes (#3904) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu --- docs/01.CONFIGURATION.md | 2 +- jerry-core/profiles/README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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: