From 6b79f7fff4c16cee17dd3f1dd9ea95ac98a5f3c8 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey <403333+asajeffrey@users.noreply.github.com> Date: Wed, 30 Mar 2022 18:26:53 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Arseny Kapoulkine --- docs/_posts/2022-03-31-luau-recap-march-2022.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_posts/2022-03-31-luau-recap-march-2022.md b/docs/_posts/2022-03-31-luau-recap-march-2022.md index 901eae63..8ac88732 100644 --- a/docs/_posts/2022-03-31-luau-recap-march-2022.md +++ b/docs/_posts/2022-03-31-luau-recap-march-2022.md @@ -77,7 +77,7 @@ end Previously examples like this did not typecheck but now they do! -This language is called *width subtyping* (it allows tables to get *wider*, that is have more properties). +This language feature is called *width subtyping* (it allows tables to get *wider*, that is to have more properties). The RFC for width subtyping is https://github.com/Roblox/luau/blob/master/rfcs/sealed-table-subtyping.md @@ -94,7 +94,7 @@ The RFC for width subtyping is https://github.com/Roblox/luau/blob/master/rfcs/s ## API improvements - * Add support for `table.clone`. + * Implement `table.clone` which takes a table and returns a new table that has the same keys/values/metatable. The cloning is shallow - if some keys refer to tables that need to be cloned, that can be done manually by modifying the resulting table. ## Debugger improvements