diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/manual.of | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/manual.of b/manual/manual.of index 77e37de3..150315d4 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -3238,7 +3238,7 @@ Values at other positions are not affected. | |||
3238 | 3238 | ||
3239 | } | 3239 | } |
3240 | 3240 | ||
3241 | @APIEntry{void lua_createtable (lua_State *L, unsigned nseq, unsigned nrec);| | 3241 | @APIEntry{void lua_createtable (lua_State *L, int nseq, int nrec);| |
3242 | @apii{0,1,m} | 3242 | @apii{0,1,m} |
3243 | 3243 | ||
3244 | Creates a new empty table and pushes it onto the stack. | 3244 | Creates a new empty table and pushes it onto the stack. |
@@ -3249,7 +3249,7 @@ the table will have. | |||
3249 | Lua may use these hints to preallocate memory for the new table. | 3249 | Lua may use these hints to preallocate memory for the new table. |
3250 | This preallocation may help performance when you know in advance | 3250 | This preallocation may help performance when you know in advance |
3251 | how many elements the table will have. | 3251 | how many elements the table will have. |
3252 | Otherwise you can use the function @Lid{lua_newtable}. | 3252 | Otherwise you should use the function @Lid{lua_newtable}. |
3253 | 3253 | ||
3254 | } | 3254 | } |
3255 | 3255 | ||
@@ -3351,7 +3351,7 @@ Returns the previous mode (@id{LUA_GCGEN} or @id{LUA_GCINC}). | |||
3351 | 3351 | ||
3352 | @item{@defid{LUA_GCPARAM} (int param, int val)| | 3352 | @item{@defid{LUA_GCPARAM} (int param, int val)| |
3353 | Changes and/or returns the value of a parameter of the collector. | 3353 | Changes and/or returns the value of a parameter of the collector. |
3354 | If @id{val} is negative, the call only returns the current value. | 3354 | If @id{val} is -1, the call only returns the current value. |
3355 | The argument @id{param} must have one of the following values: | 3355 | The argument @id{param} must have one of the following values: |
3356 | @description{ | 3356 | @description{ |
3357 | @item{@defid{LUA_GCPMINORMUL}| The minor multiplier. } | 3357 | @item{@defid{LUA_GCPMINORMUL}| The minor multiplier. } |