aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-26 09:39:20 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-26 09:39:20 -0200
commit3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf (patch)
treea07f436aa6a9b755bf974cce539798b99a3e83e4 /lua.h
parentb0f2b288a6b860374b9578d4c51329fc9cd43022 (diff)
downloadlua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.tar.gz
lua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.tar.bz2
lua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.zip
comment typos
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 156fb875..ead8422b 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.250 2009/11/09 19:10:48 roberto Exp roberto $ 2** $Id: lua.h,v 1.251 2009/11/25 15:27:51 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -370,7 +370,7 @@ LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
370typedef struct lua_Debug lua_Debug; /* activation record */ 370typedef struct lua_Debug lua_Debug; /* activation record */
371 371
372 372
373/* Functions to be called by the debuger in specific events */ 373/* Functions to be called by the debugger in specific events */
374typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar); 374typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
375 375
376 376