diff --git a/loadlib.c b/loadlib.c index e7201c6c..79d3e452 100644 --- a/loadlib.c +++ b/loadlib.c @@ -1,5 +1,5 @@ /* -** $Id: loadlib.c,v 1.123 2014/11/12 13:31:51 roberto Exp roberto $ +** $Id: loadlib.c,v 1.124 2015/01/05 13:51:39 roberto Exp roberto $ ** Dynamic library loader for Lua ** See Copyright Notice in lua.h ** @@ -136,8 +136,8 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym); #include /* -** Macro to covert pointer to void* to pointer to function. This cast -** is undefined according to ISO C, but POSIX assumes that it must work. +** Macro to convert pointer-to-void* to pointer-to-function. This cast +** is undefined according to ISO C, but POSIX assumes that it works. ** (The '__extension__' in gnu compilers is only to avoid warnings.) */ #if defined(__GNUC__)