diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-27 12:58:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-27 12:58:05 -0300 |
commit | 420cc62facc5b49d0aebfb9be7ddfe911d77ff97 (patch) | |
tree | 0ad2341511bd07e78434808b5e5a71f71bd5e323 /ldump.c | |
parent | 1a3ebc203a04a4b312d1692d41eeda7035ea0eef (diff) | |
download | lua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.tar.gz lua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.tar.bz2 lua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.zip |
missplelling in comments/function names (endianess -> endianness)
Diffstat (limited to 'ldump.c')
-rw-r--r-- | ldump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldump.c,v 2.26 2014/03/11 18:05:46 roberto Exp roberto $ | 2 | ** $Id: ldump.c,v 2.27 2014/03/11 18:56:27 roberto Exp roberto $ |
3 | ** save precompiled Lua chunks | 3 | ** save precompiled Lua chunks |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,7 +27,7 @@ typedef struct { | |||
27 | 27 | ||
28 | /* | 28 | /* |
29 | ** All high-level dumps go through DumpVector; you can change it to | 29 | ** All high-level dumps go through DumpVector; you can change it to |
30 | ** change the endianess of the result | 30 | ** change the endianness of the result |
31 | */ | 31 | */ |
32 | #define DumpVector(v,n,D) DumpBlock(v,(n)*sizeof((v)[0]),D) | 32 | #define DumpVector(v,n,D) DumpBlock(v,(n)*sizeof((v)[0]),D) |
33 | 33 | ||