diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-27 10:43:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 17:43:13 +0800 |
commit | 2c16c6a6c42f46e290df5441c37572f296aeb09f (patch) | |
tree | 4dc8b602dd210372621ba278297be2fd997709ec /src/nvim/lua/executor.c | |
parent | 574d25642fc9ca65b396633aeab6e2d32778b642 (diff) | |
download | rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.tar.gz rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.tar.bz2 rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.zip |
docs: small fixes (#26154)
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index 04eda99d17..9ff217af84 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -115,7 +115,7 @@ lua_State *get_global_lstate(void) /// Convert lua error into a Vim error message /// /// @param lstate Lua interpreter state. -/// @param[in] msg Message base, must contain one `%s`. +/// @param[in] msg Message base, must contain one `%*s`. void nlua_error(lua_State *const lstate, const char *const msg) FUNC_ATTR_NONNULL_ALL { |