small corrections in comments

This commit is contained in:
Roberto Ierusalimschy
1998-06-19 13:14:09 -03:00
parent bec9bc4154
commit 9618aaf07d
15 changed files with 33 additions and 33 deletions

4
llex.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.h,v 1.7 1998/01/09 14:57:43 roberto Exp $
** $Id: llex.h,v 1.8 1998/05/27 13:03:40 roberto Exp roberto $
** Lexical Analizer
** See Copyright Notice in lua.h
*/
@@ -32,7 +32,7 @@ enum RESERVED {
struct ifState {
int elsepart; /* true if its in the $else part */
int condition; /* true if $if condition is true */
int skip; /* true if part must be skiped */
int skip; /* true if part must be skipped */
};