diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/manual.of | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/manual.of b/manual/manual.of index bd648c6c..30f92d60 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -2521,7 +2521,7 @@ In general, | |||
2521 | Lua's garbage collection can free or move internal memory | 2521 | Lua's garbage collection can free or move internal memory |
2522 | and then invalidate pointers to internal strings. | 2522 | and then invalidate pointers to internal strings. |
2523 | To allow a safe use of these pointers, | 2523 | To allow a safe use of these pointers, |
2524 | The API guarantees that any pointer to a string in a stack index | 2524 | the API guarantees that any pointer to a string in a stack index |
2525 | is valid while the string value at that index is not removed from the stack. | 2525 | is valid while the string value at that index is not removed from the stack. |
2526 | (It can be moved to another index, though.) | 2526 | (It can be moved to another index, though.) |
2527 | When the index is a pseudo-index (referring to an upvalue), | 2527 | When the index is a pseudo-index (referring to an upvalue), |
@@ -5349,7 +5349,7 @@ Equivalent to the sequence | |||
5349 | @APIEntry{void luaL_buffsub (luaL_Buffer *B, int n);| | 5349 | @APIEntry{void luaL_buffsub (luaL_Buffer *B, int n);| |
5350 | @apii{?,?,-} | 5350 | @apii{?,?,-} |
5351 | 5351 | ||
5352 | Removes @id{n} bytes from the the buffer @id{B} | 5352 | Removes @id{n} bytes from the buffer @id{B} |
5353 | @seeC{luaL_Buffer}. | 5353 | @seeC{luaL_Buffer}. |
5354 | The buffer must have at least that many bytes. | 5354 | The buffer must have at least that many bytes. |
5355 | 5355 | ||