From 3a863198b39663f20325626af0406eb343ac8227 Mon Sep 17 00:00:00 2001 From: "ajeffrey@roblox.com" Date: Tue, 30 Mar 2021 11:04:04 -0500 Subject: [PATCH] Fixed typo --- docs/_posts/2021-03-29-luau-recap-march-2021.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2021-03-29-luau-recap-march-2021.md b/docs/_posts/2021-03-29-luau-recap-march-2021.md index 31dfcc31..eecb695c 100644 --- a/docs/_posts/2021-03-29-luau-recap-march-2021.md +++ b/docs/_posts/2021-03-29-luau-recap-march-2021.md @@ -18,7 +18,7 @@ end f("hi") f("lo", 5, 27) ``` -This function takes a string, plus as many numbers as you like, but if you try calling it with anything else, you'll get a type error, for example `f("oh", true)` gives an error " Type `boolean` could not be converted into `number`" +This function takes a string, plus as many numbers as you like, but if you try calling it with anything else, you'll get a type error, for example `f("oh", true)` gives an error "Type `boolean` could not be converted into `number`" Variadics can be used in function declarations, and function types, for example ```