summaryrefslogtreecommitdiff
path: root/lstring.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
commit9618aaf07d0d82ccbac91db22cb42451ec17d7ed (patch)
tree199314fbf7462d174921c71af389da14b4f6c595 /lstring.c
parentbec9bc4154e54fbc19b134874f6301f1e4654d5d (diff)
downloadlua-github-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz
small corrections in comments
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstring.c b/lstring.c
index f18d2ff2..b2b4baa2 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstring.c,v 1.11 1998/01/28 16:50:33 roberto Exp roberto $
+** $Id: lstring.c,v 1.12 1998/03/06 16:54:42 roberto Exp roberto $
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
@@ -258,7 +258,7 @@ TaggedString *luaS_collectudata (void)
for (j=0; j<tb->size; j++) {
TaggedString *t = tb->hash[j];
if (t == NULL || t == &EMPTY || t->constindex != -1)
- continue; /* get only user datas */
+ continue; /* get only user data */
t->head.next = (GCnode *)frees;
frees = t;
tb->hash[j] = &EMPTY;