lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 8c429311a38f0ca6f06c6df460f76414d4f4dfbe
parent 66b7b075a65670e8a730c9373d28f971aceb8930
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  5 Mar 2018 11:13:28 -0300

typo in comment

Diffstat:
Mldo.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ldo.c b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 2.196 2018/02/17 19:29:29 roberto Exp roberto $ +** $Id: ldo.c,v 2.197 2018/02/26 14:16:05 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -264,7 +264,7 @@ void luaD_inctop (lua_State *L) { /* ** Call a hook for the given event. Make sure there is a hook to be -** called. (Both 'L->hook' and 'L->hookmask', which triggers this +** called. (Both 'L->hook' and 'L->hookmask', which trigger this ** function, can be changed asynchronously by signals.) */ void luaD_hook (lua_State *L, int event, int line,