Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VM/src/ldebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static Closure* auxgetinfo(lua_State* L, const char* what, lua_Debug* ar, Closur
{
TString* source = f->l.p->source;
ar->source = getstr(source);
ar->what = "Lua";
ar->what = "Luau";
ar->linedefined = f->l.p->linedefined;
ar->short_src = luaO_chunkid(ar->ssbuf, sizeof(ar->ssbuf), getstr(source), source->len);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Conformance.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2381,7 +2381,7 @@ TEST_CASE("IfElseExpression")
// Optionally returns debug info for the first Luau stack frame that is encountered on the callstack.
static std::optional<lua_Debug> getFirstLuauFrameDebugInfo(lua_State* L)
{
static std::string_view kLua = "Lua";
static std::string_view kLua = "Luau";
lua_Debug ar;
for (int i = 0; lua_getinfo(L, i, "sl", &ar); i++)
{
Expand Down
Loading