aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-26 09:39:20 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-26 09:39:20 -0200
commit3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf (patch)
treea07f436aa6a9b755bf974cce539798b99a3e83e4 /ltable.c
parentb0f2b288a6b860374b9578d4c51329fc9cd43022 (diff)
downloadlua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.tar.gz
lua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.tar.bz2
lua-3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf.zip
comment typos
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index b3fe8b46..d6e8e526 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.44 2009/11/06 17:07:12 roberto Exp roberto $ 2** $Id: ltable.c,v 2.45 2009/11/19 17:54:07 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -133,7 +133,7 @@ static int arrayindex (const TValue *key) {
133/* 133/*
134** returns the index of a `key' for table traversals. First goes all 134** returns the index of a `key' for table traversals. First goes all
135** elements in the array part, then elements in the hash part. The 135** elements in the array part, then elements in the hash part. The
136** beginning of a traversal is signalled by -1. 136** beginning of a traversal is signaled by -1.
137*/ 137*/
138static int findindex (lua_State *L, Table *t, StkId key) { 138static int findindex (lua_State *L, Table *t, StkId key) {
139 int i; 139 int i;