Fix argument casing in typedefs

This commit is contained in:
Filip Tibell 2023-08-26 16:22:49 -05:00
parent a120963451
commit 37d6f1de2d
No known key found for this signature in database

View file

@ -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