diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-12-30 11:45:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-12-30 11:45:08 -0300 |
commit | bd1b87c5790c0c6fe23f76aa360e879922e1e738 (patch) | |
tree | 49978c2dd847c7ff4ec84e1a153ca37deef79e2a /ltests.c | |
parent | d7bb8df8414f71a290c8a4b1c9f7c6fe839a94df (diff) | |
download | lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.gz lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.tar.bz2 lua-bd1b87c5790c0c6fe23f76aa360e879922e1e738.zip |
Comments (mosty typos)
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -476,7 +476,7 @@ static void checkrefs (global_State *g, GCObject *o) { | |||
476 | /* | 476 | /* |
477 | ** Check consistency of an object: | 477 | ** Check consistency of an object: |
478 | ** - Dead objects can only happen in the 'allgc' list during a sweep | 478 | ** - Dead objects can only happen in the 'allgc' list during a sweep |
479 | ** phase (controled by the caller through 'maybedead'). | 479 | ** phase (controlled by the caller through 'maybedead'). |
480 | ** - During pause, all objects must be white. | 480 | ** - During pause, all objects must be white. |
481 | ** - In generational mode: | 481 | ** - In generational mode: |
482 | ** * objects must be old enough for their lists ('listage'). | 482 | ** * objects must be old enough for their lists ('listage'). |
@@ -783,7 +783,7 @@ static int mem_query (lua_State *L) { | |||
783 | return 1; | 783 | return 1; |
784 | } | 784 | } |
785 | } | 785 | } |
786 | return luaL_error(L, "unkown type '%s'", t); | 786 | return luaL_error(L, "unknown type '%s'", t); |
787 | } | 787 | } |
788 | } | 788 | } |
789 | 789 | ||