diff --git a/aftman.toml b/aftman.toml index 38cb739..3b4fcc9 100644 --- a/aftman.toml +++ b/aftman.toml @@ -1,4 +1,4 @@ [tools] -luau-lsp = "JohnnyMorganz/luau-lsp@1.27.0" -selene = "Kampfkarren/selene@0.26.1" -stylua = "JohnnyMorganz/StyLua@0.19.1" +luau-lsp = "JohnnyMorganz/luau-lsp@1.29.0" +selene = "Kampfkarren/selene@0.27.1" +stylua = "JohnnyMorganz/StyLua@0.20.0" diff --git a/tests/require/tests/state_module.luau b/tests/require/tests/state_module.luau index 9b6135e..156f5bc 100644 --- a/tests/require/tests/state_module.luau +++ b/tests/require/tests/state_module.luau @@ -3,7 +3,7 @@ local M = {} M.state = 10 function M.set_state(n: number) - M.state = n + M.state = n end return M