From 67b2794e34603f913a696b63c1ac766baad677db Mon Sep 17 00:00:00 2001 From: YawarRaza7349 Date: Fri, 5 Sep 2025 09:27:20 -0400 Subject: [PATCH 1/2] Typo: unescaped Markdown --- pages/docs/manual/v11.0.0/migrate-to-v11.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/manual/v11.0.0/migrate-to-v11.mdx b/pages/docs/manual/v11.0.0/migrate-to-v11.mdx index f63c09ec8..fbdf3bcb9 100644 --- a/pages/docs/manual/v11.0.0/migrate-to-v11.mdx +++ b/pages/docs/manual/v11.0.0/migrate-to-v11.mdx @@ -108,7 +108,7 @@ Below is an excerpt from the compiler changelog about all the breaking changes o Also, `(. int) => string => bool` is not equivalen to `(. int, string) => bool` anymore. These are only breaking changes for unformatted code. - Exponentiation operator `**` is now right-associative. `2. ** 3. ** 2.` now compile to `Math.pow(2, Math.pow(3, 2))` and not anymore `Math.pow(Math.pow(2, 3), 2)`. Parentheses can be used to change precedence. -- Stop mangling object field names. If you had objects with field names containing "\__" or leading "_", they won't be mangled in the compiled JavaScript and represented as it is without changes. https://github.com/rescript-lang/rescript/pull/6354 +- Stop mangling object field names. If you had objects with field names containing "\_\_" or leading "\_", they won't be mangled in the compiled JavaScript and represented as it is without changes. https://github.com/rescript-lang/rescript/pull/6354 - `$$default` is no longer exported from the generated JavaScript when using default exports. https://github.com/rescript-lang/rescript/pull/6328 - `-bs-super-errors` flag has been deprecated along with Super_errors. https://github.com/rescript-lang/rescript/pull/6243 - Remove unsafe `` j`$(a)$(b)` `` interpolation deprecated in compiler version 10 https://github.com/rescript-lang/rescript/pull/6068 From f8d06b7da71bff3818973b556b3df0974634cb3b Mon Sep 17 00:00:00 2001 From: YawarRaza7349 Date: Fri, 5 Sep 2025 09:27:29 -0400 Subject: [PATCH 2/2] Typo: unescaped Markdown --- pages/docs/manual/v12.0.0/migrate-to-v11.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/manual/v12.0.0/migrate-to-v11.mdx b/pages/docs/manual/v12.0.0/migrate-to-v11.mdx index b1977a59a..07bcb78f5 100644 --- a/pages/docs/manual/v12.0.0/migrate-to-v11.mdx +++ b/pages/docs/manual/v12.0.0/migrate-to-v11.mdx @@ -108,7 +108,7 @@ Below is an excerpt from the compiler changelog about all the breaking changes o Also, `(. int) => string => bool` is not equivalen to `(. int, string) => bool` anymore. These are only breaking changes for unformatted code. - Exponentiation operator `**` is now right-associative. `2. ** 3. ** 2.` now compile to `Math.pow(2, Math.pow(3, 2))` and not anymore `Math.pow(Math.pow(2, 3), 2)`. Parentheses can be used to change precedence. -- Stop mangling object field names. If you had objects with field names containing "\__" or leading "_", they won't be mangled in the compiled JavaScript and represented as it is without changes. https://github.com/rescript-lang/rescript-compiler/pull/6354 +- Stop mangling object field names. If you had objects with field names containing "\_\_" or leading "\_", they won't be mangled in the compiled JavaScript and represented as it is without changes. https://github.com/rescript-lang/rescript-compiler/pull/6354 - `$$default` is no longer exported from the generated JavaScript when using default exports. https://github.com/rescript-lang/rescript-compiler/pull/6328 - `-bs-super-errors` flag has been deprecated along with Super_errors. https://github.com/rescript-lang/rescript-compiler/pull/6243 - Remove unsafe `` j`$(a)$(b)` `` interpolation deprecated in compiler version 10 https://github.com/rescript-lang/rescript-compiler/pull/6068