From 2d4e1f981e65d65f5014411070ee3fa8cc77bbbc Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Tue, 8 Oct 2024 04:08:58 +0800 Subject: [PATCH] improves the 2.2.0 changelog (#24256) (cherry picked from commit 30e552e3d3963e6a85aa4c753e3e4666826d4908) --- changelogs/changelog_2_2_0.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/changelogs/changelog_2_2_0.md b/changelogs/changelog_2_2_0.md index b50cbeb27a..6f95fb52ee 100644 --- a/changelogs/changelog_2_2_0.md +++ b/changelogs/changelog_2_2_0.md @@ -22,9 +22,9 @@ - `bindMethod` in `std/jsffi` is deprecated, don't use it with closures. -- JS backend now supports lambda lifting for closures. Use `--legacy:jsNoLambdaLifting` to emulate old behaviors. +- The JS backend now supports lambda lifting for closures. Use `--legacy:jsNoLambdaLifting` to emulate old behaviors. -- JS backend now supports closure iterators. +- The JS backend now supports closure iterators. - `owner` in `std/macros` is deprecated. @@ -125,7 +125,7 @@ is often an easy workaround. - `member` can be used to attach a procedure to a C++ type. -- C++ `constructor` now reuses `result` instead creating `this`. +- Inside a C++ constructor, `result` can be used to access the created object rather than `this`. - Tuple unpacking changes: - Tuple unpacking assignment now supports using underscores to discard values.