From 37d6f1de2da12079e3ca9703a106f26101ca32c5 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 26 Aug 2023 16:22:49 -0500 Subject: [PATCH] Fix argument casing in typedefs --- types/Luau.luau | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/Luau.luau b/types/Luau.luau index a54b2fc..550ea56 100644 --- a/types/Luau.luau +++ b/types/Luau.luau @@ -74,11 +74,11 @@ local luau = {} ``` @param source The string that'll be compiled into bytecode - @param CompileOptions The luau compiler options used when compiling the source string + @param compileOptions The luau compiler options used when compiling the source string @return luau bytecode ]=] -function luau.compile(source: string, CompileOptions: CompileOptions?): string +function luau.compile(source: string, compileOptions: CompileOptions?): string return nil :: any end