Update lua_auxlib.c

fix minor typo.
This commit is contained in:
Tom van Dijck 2017-08-18 10:49:37 -07:00 committed by GitHub
parent c501f53a04
commit 1b8bb77d96

View File

@ -32,7 +32,7 @@ LUALIB_API int luaL_loadfilex (lua_State* L, const char* filename, const char* m
int bottom = lua_gettop(L);
int z = !OKAY;
/* If filename istarts with "$/" then we want to load the version that
/* If filename starts with "$/" then we want to load the version that
* was embedded into the executable and skip the local file system */
if (filename[0] == '$') {
z = premake_load_embedded_script(L, filename + 2); /* Skip over leading "$/" */