From 1f5d8953cd4faacd36aafaa00d94a25188c4e1fd Mon Sep 17 00:00:00 2001 From: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> Date: Fri, 30 Jul 2021 13:48:15 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Arseny Kapoulkine --- docs/_posts/2021-07-30-luau-recap-july-2021.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_posts/2021-07-30-luau-recap-july-2021.md b/docs/_posts/2021-07-30-luau-recap-july-2021.md index b0a0cbb7..a38f813c 100644 --- a/docs/_posts/2021-07-30-luau-recap-july-2021.md +++ b/docs/_posts/2021-07-30-luau-recap-july-2021.md @@ -3,7 +3,7 @@ layout: single title: "Luau Recap: July 2021" --- -Luau is our new language that you can read more about at [https://roblox.github.io/luau](https://roblox.github.io/luau). Our team was still busy working on upcoming Studio Beta feature for script editor, but we did fit in multiple typechecking improvements. +Luau is our new language that you can read more about at [https://luau-lang.org](https://luau-lang.org). Our team was still busy working on upcoming Studio Beta feature for script editor, but we did fit in multiple typechecking improvements. [Cross-posted to the [Roblox Developer Forum](https://devforum.roblox.com/t/luau-recap-july-2021/).] @@ -50,7 +50,7 @@ We read those reports and two additional cases have been fixed this month. We now track only a single one that should be fixed next month. Another false positive error that was fixed involves tables with __call metatable function. -We no longer report an error when this method is invoked and we'll also make sure that given arguments match the function definition: +We no longer report a type error when this method is invoked and we'll also make sure that given arguments match the function definition: ```lua --!strict local t = { x = 2 }