Skip to content

Commit 3a25262

Browse files
authored
stdlib: luacase @std/luau (#605)
As part of the API audit/cleanup, we are luacasing `@std/luau`!!
1 parent 1f5dd8f commit 3a25262

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lute/std/libs/luau.luau

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ local path = require("@std/path")
1010

1111
local luau = {}
1212

13-
export type Bytecode = luteLuau.Bytecode
13+
export type bytecode = luteLuau.Bytecode
1414

15-
function luau.compile(source: string): Bytecode
15+
function luau.compile(source: string): bytecode
1616
return luteLuau.compile(source)
1717
end
1818

19-
function luau.load(bytecode: Bytecode, chunkname: string?, env: { [any]: any }?): (...any) -> ...any
19+
function luau.load(bytecode: bytecode, chunkname: string?, env: { [any]: any }?): (...any) -> ...any
2020
return luteLuau.load(bytecode, if chunkname ~= nil then `@{chunkname}` else "=luau.load", env)
2121
end
2222

0 commit comments

Comments
 (0)