From 420cc62facc5b49d0aebfb9be7ddfe911d77ff97 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 27 Mar 2014 12:58:05 -0300 Subject: missplelling in comments/function names (endianess -> endianness) --- lundump.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index e9d445e6..ddf55239 100644 --- a/lundump.c +++ b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 2.33 2014/03/11 18:05:46 roberto Exp roberto $ +** $Id: lundump.c,v 2.34 2014/03/11 18:56:27 roberto Exp roberto $ ** load precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -42,7 +42,7 @@ static l_noret error(LoadState *S, const char *why) { /* ** All high-level loads go through LoadVector; you can change it to -** adapt to the endianess of the input +** adapt to the endianness of the input */ #define LoadVector(S,b,n) LoadBlock(S,b,(n)*sizeof((b)[0])) @@ -231,7 +231,7 @@ static void checkHeader (LoadState *S) { checksize(S, lua_Integer); checksize(S, lua_Number); if (LoadInteger(S) != LUAC_INT) - error(S, "endianess mismatch in"); + error(S, "endianness mismatch in"); if (LoadNumber(S) != LUAC_NUM) error(S, "float format mismatch in"); } -- cgit v1.2.3-55-g6feb