diff options
Diffstat (limited to 'ltm.c')
-rw-r--r-- | ltm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.96 2002/06/24 20:17:59 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 1.97 2002/06/25 19:17:22 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | const char *const luaT_typenames[] = { | 20 | const char *const luaT_typenames[] = { |
21 | "nil", "number", "string", "boolean", "table", | 21 | "nil", "number", "string", "boolean", "table", |
22 | "userdata", "userdata", "function" | 22 | "function", "userdata", "userdata" |
23 | }; | 23 | }; |
24 | 24 | ||
25 | 25 | ||