Merge branch 'main' into feature/datetime

This commit is contained in:
Erica Marigold 2023-08-27 19:18:27 +05:30 committed by GitHub
commit 1219f65ac7
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

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