From fe39876c67dc92bfff59fb539feaf9105ec973ca Mon Sep 17 00:00:00 2001 From: Leonardo Laguna Ruiz Date: Sun, 12 Apr 2020 15:05:19 +0300 Subject: [PATCH] Fixes typo in comment --- src/LuaJITEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaJITEngine.cpp b/src/LuaJITEngine.cpp index 099a062..ee39157 100644 --- a/src/LuaJITEngine.cpp +++ b/src/LuaJITEngine.cpp @@ -36,7 +36,7 @@ struct LuaJITEngine : ScriptEngine { luaopen_bit(L); // Loads the JIT package otherwise it will be off luaopen_jit(L); - // Diables access to the JIT package + // Disables access to the JIT package lua_pushnil(L); lua_setglobal(L,"jit");