From f729f82cc80009664e3a3b44145857976e8eeea8 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 3 Jan 2010 00:13:58 -0500 Subject: [PATCH] Fixed incorrect comment. --- lua_glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua_glue.c b/lua_glue.c index dcf5c50..14adb8d 100644 --- a/lua_glue.c +++ b/lua_glue.c @@ -63,7 +63,7 @@ static inline void set_cptr(lua_State *L, void *ptr, const char *sym) { lua_pushlightuserdata(L, ptr); lua_setfield(L, -2, sym); -} // set_cfunc +} // set_cptr // Sets t[sym]=f, where t is on the top of the Lua stack.