commit fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0
parent c6ef3e2672859a26bb5f0ab5fa3f99a3fb32d5b4
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Fri, 29 Oct 2010 15:52:22 -0200
comment typos
Diffstat:
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/lstate.h b/lstate.h
@@ -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 */
diff --git a/lstrlib.c b/lstrlib.c
@@ -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) {
diff --git a/luaconf.h b/luaconf.h
@@ -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.
*/
diff --git a/lvm.c b/lvm.c
@@ -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 */
}