Skip to content

Commit

Permalink
Details (identation and typos)
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-ieru committed May 10, 2022
1 parent 315639d commit e435aaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ldo.h
Expand Up @@ -58,7 +58,8 @@ LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
LUAI_FUNC void luaD_hook (lua_State *L, int event, int line,
int fTransfer, int nTransfer);
LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int narg1, int delta);
LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func,
int narg1, int delta);
LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
Expand Down
4 changes: 2 additions & 2 deletions manual/manual.of
Expand Up @@ -2521,7 +2521,7 @@ In general,
Lua's garbage collection can free or move internal memory
and then invalidate pointers to internal strings.
To allow a safe use of these pointers,
The API guarantees that any pointer to a string in a stack index
the API guarantees that any pointer to a string in a stack index
is valid while the string value at that index is not removed from the stack.
(It can be moved to another index, though.)
When the index is a pseudo-index (referring to an upvalue),
Expand Down Expand Up @@ -5349,7 +5349,7 @@ Equivalent to the sequence
@APIEntry{void luaL_buffsub (luaL_Buffer *B, int n);|
@apii{?,?,-}

Removes @id{n} bytes from the the buffer @id{B}
Removes @id{n} bytes from the buffer @id{B}
@seeC{luaL_Buffer}.
The buffer must have at least that many bytes.

Expand Down

0 comments on commit e435aaa

Please sign in to comment.