diff --git a/games/devtest/mods/unittests/async_env.lua b/games/devtest/mods/unittests/async_env.lua index dc595ef88..d17cef1ed 100644 --- a/games/devtest/mods/unittests/async_env.lua +++ b/games/devtest/mods/unittests/async_env.lua @@ -218,7 +218,7 @@ local function test_async_job_replacement(cb) end local job = core.handle_async(function() end, function() - return cb("Canceled async job run") + return cb("Canceled async job ran") end) if not job:cancel() then return cb("AsyncJob:cancel sanity check failed") diff --git a/src/script/lua_api/l_async.cpp b/src/script/lua_api/l_async.cpp index 6291e9f8d..00c5e0eb4 100644 --- a/src/script/lua_api/l_async.cpp +++ b/src/script/lua_api/l_async.cpp @@ -1,5 +1,5 @@ -// Minetest -// SPDX-License-Identifier: LGPL-2.1-or-later/ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later #include "lua_api/l_internal.h" #include "lua_api/l_async.h"