Browse Source

Fixes typo in comment

pull/26/head
Leonardo Laguna Ruiz 5 years ago
parent
commit
fe39876c67
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/LuaJITEngine.cpp

+ 1
- 1
src/LuaJITEngine.cpp View File

@@ -36,7 +36,7 @@ struct LuaJITEngine : ScriptEngine {
luaopen_bit(L); luaopen_bit(L);
// Loads the JIT package otherwise it will be off // Loads the JIT package otherwise it will be off
luaopen_jit(L); luaopen_jit(L);
// Diables access to the JIT package
// Disables access to the JIT package
lua_pushnil(L); lua_pushnil(L);
lua_setglobal(L,"jit"); lua_setglobal(L,"jit");




Loading…
Cancel
Save