mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Fix argument casing in typedefs
This commit is contained in:
parent
a120963451
commit
37d6f1de2d
1 changed files with 2 additions and 2 deletions
|
@ -74,11 +74,11 @@ local luau = {}
|
||||||
```
|
```
|
||||||
|
|
||||||
@param source The string that'll be compiled into bytecode
|
@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
|
@return luau bytecode
|
||||||
]=]
|
]=]
|
||||||
function luau.compile(source: string, CompileOptions: CompileOptions?): string
|
function luau.compile(source: string, compileOptions: CompileOptions?): string
|
||||||
return nil :: any
|
return nil :: any
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue