From d103312661d4d2428516924658154df09b3168a4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 19 Nov 2015 17:16:22 -0200 Subject: details (typos in comments) --- loslib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'loslib.c') diff --git a/loslib.c b/loslib.c index 0522a512..b043f679 100644 --- a/loslib.c +++ b/loslib.c @@ -1,5 +1,5 @@ /* -** $Id: loslib.c,v 1.58 2015/07/04 16:35:14 roberto Exp roberto $ +** $Id: loslib.c,v 1.59 2015/07/06 15:16:51 roberto Exp roberto $ ** Standard Operating System library ** See Copyright Notice in lua.h */ @@ -215,7 +215,7 @@ static int getfield (lua_State *L, const char *key, int d, int delta) { if (!isnum) { /* field is not a number? */ if (t != LUA_TNIL) /* some other value? */ return luaL_error(L, "field '%s' not an integer", key); - else if (d < 0) /* abssent field; no default? */ + else if (d < 0) /* absent field; no default? */ return luaL_error(L, "field '%s' missing in date table", key); res = d; } -- cgit v1.2.3-55-g6feb