Selaa lähdekoodia

typo in comment

Roberto Ierusalimschy 10 vuotta sitten
vanhempi
commit
a9a4bf68b0
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3 3
      loadlib.c

+ 3 - 3
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
 ** Dynamic library loader for Lua
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 **
 **
@@ -136,8 +136,8 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
 #include <dlfcn.h>
 #include <dlfcn.h>
 
 
 /*
 /*
-** 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.)
 ** (The '__extension__' in gnu compilers is only to avoid warnings.)
 */
 */
 #if defined(__GNUC__)
 #if defined(__GNUC__)