Skip to content

Commit

Permalink
comment typos
Browse files Browse the repository at this point in the history
roberto-ieru committed Oct 29, 2010

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent c6ef3e2 commit fdd5f2f
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lstate.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
** $Id: lstate.h,v 2.66 2010/09/03 14:14:01 roberto Exp roberto $
** $Id: lstate.h,v 2.67 2010/09/30 17:21:31 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -66,7 +66,7 @@ typedef struct stringtable {


/*
** informations about a call
** information about a call
*/
typedef struct CallInfo {
StkId func; /* function index in the stack */
4 changes: 2 additions & 2 deletions lstrlib.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
** $Id: lstrlib.c,v 1.154 2010/07/02 11:38:13 roberto Exp roberto $
** $Id: lstrlib.c,v 1.155 2010/10/25 19:01:37 roberto Exp roberto $
** Standard library for string operations and pattern-matching
** See Copyright Notice in lua.h
*/
@@ -424,7 +424,7 @@ static const char *match (MatchState *ms, const char *s, const char *p) {
default: goto dflt;
}
}
default: dflt: { /* pattern class plus optional sufix */
default: dflt: { /* pattern class plus optional suffix */
const char *ep = classend(ms, p); /* points to what is next */
int m = s < ms->src_end && singlematch(uchar(*s), p, ep);
switch (*ep) {
6 changes: 3 additions & 3 deletions luaconf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.146 2010/10/28 15:18:25 roberto Exp roberto $
** $Id: luaconf.h,v 1.147 2010/10/29 11:13:21 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -457,7 +457,7 @@
#if defined(LUA_NUMBER_DOUBLE) && !defined(LUA_ANSI) && \
!defined(LUA_NOIEEE754TRICK) /* { */

/* On a Microsoft compiler on a Pentium, use assembler to avoid chashes
/* On a Microsoft compiler on a Pentium, use assembler to avoid clashes
with a DirectX idiosyncrasy */
#if defined(_MSC_VER) && defined(M_IX86) /* { */

@@ -473,7 +473,7 @@
union luai_Cast { double l_d; LUA_INT32 l_p[2]; };

/*
@@ LUA_IEEEENDIAN is the endianess of doubles in your machine
@@ LUA_IEEEENDIAN is the endianness of doubles in your machine
@@ (0 for little endian, 1 for big endian); if not defined, Lua will
@@ check it dynamically.
*/
4 changes: 2 additions & 2 deletions lvm.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
** $Id: lvm.c,v 2.123 2010/06/30 14:11:17 roberto Exp roberto $
** $Id: lvm.c,v 2.124 2010/10/25 19:01:37 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -301,7 +301,7 @@ void luaV_concat (lua_State *L, int total) {
setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl));
}
total -= n-1; /* got 'n' strings to create 1 new */
L->top -= n-1; /* poped 'n' strings and pushed one */
L->top -= n-1; /* popped 'n' strings and pushed one */
} while (total > 1); /* repeat until only 1 result left */
}

0 comments on commit fdd5f2f

Please sign in to comment.