diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 17:29:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 17:29:04 -0200 |
commit | 599f1742c628db70ef84794b3b8b25fdef9e5004 (patch) | |
tree | 6221729270cb636861de393484c048b955a72726 /lobject.h | |
parent | 73abfde2ef16223b12cf04800f6e53bfc68ad356 (diff) | |
download | lua-599f1742c628db70ef84794b3b8b25fdef9e5004.tar.gz lua-599f1742c628db70ef84794b3b8b25fdef9e5004.tar.bz2 lua-599f1742c628db70ef84794b3b8b25fdef9e5004.zip |
detail (typo in comments)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.125 2017/06/29 15:06:44 roberto Exp $ | 2 | ** $Id: lobject.h,v 2.130 2017/11/07 13:25:26 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -529,7 +529,7 @@ typedef union Closure { | |||
529 | 529 | ||
530 | /* | 530 | /* |
531 | ** Nodes for Hash tables. A pack of two TValue's (key-value pairs) | 531 | ** Nodes for Hash tables. A pack of two TValue's (key-value pairs) |
532 | ** plus a 'next' field to link colliding entries. The distribuition | 532 | ** plus a 'next' field to link colliding entries. The distribution |
533 | ** of the key's fields ('key_tt' and 'key_val') not forming a proper | 533 | ** of the key's fields ('key_tt' and 'key_val') not forming a proper |
534 | ** 'TValue' allows for a smaller size for 'Node' both in 4-byte | 534 | ** 'TValue' allows for a smaller size for 'Node' both in 4-byte |
535 | ** and 8-byte alignments. | 535 | ** and 8-byte alignments. |