From e888976bc6ba5592fb8ab8ecc04a8f63e217aa74 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 5 Jul 2019 15:03:15 -0300 Subject: Details (typos in comments) --- lauxlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lauxlib.c') diff --git a/lauxlib.c b/lauxlib.c index d49ef573..e3a7a577 100644 --- a/lauxlib.c +++ b/lauxlib.c @@ -62,7 +62,7 @@ static int findfield (lua_State *L, int objidx, int level) { else if (findfield(L, objidx, level - 1)) { /* try recursively */ /* stack: lib_name, lib_table, field_name (top) */ lua_pushliteral(L, "."); /* place '.' between the two names */ - lua_replace(L, -3); /* (in the slot ocupied by table) */ + lua_replace(L, -3); /* (in the slot occupied by table) */ lua_concat(L, 3); /* lib_name.field_name */ return 1; } -- cgit v1.2.3-55-g6feb