diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-04-24 02:01:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 17:01:01 -0700 |
commit | 92f7286377cb077cb42484a83740a8c95f8ae7f1 (patch) | |
tree | ba5ef19c90613d403412485f6012ac78399e9cc4 /src | |
parent | cfaf7440fceb5967245966332d38794f5106552d (diff) | |
download | rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.tar.gz rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.tar.bz2 rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.zip |
docs: make docstring consistent with parameters #18178
Closes: https://github.com/neovim/neovim/issues/12691
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/api/buffer.c | 4 | ||||
-rw-r--r-- | src/nvim/api/vim.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 6d5803a5fe..0c68325f40 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -529,9 +529,9 @@ end: /// @param channel_id /// @param buffer Buffer handle, or 0 for current buffer /// @param start_row First line index -/// @param start_column First column +/// @param start_col First column /// @param end_row Last line index -/// @param end_column Last column +/// @param end_col Last column /// @param replacement Array of lines to use as replacement /// @param[out] err Error details, if any void nvim_buf_set_text(uint64_t channel_id, Buffer buffer, Integer start_row, Integer start_col, diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 626f7dc3eb..7a966777af 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -526,8 +526,7 @@ String nvim__get_lib_dir(void) /// /// @param pat pattern of files to search for /// @param all whether to return all matches or only the first -/// @param options -/// is_lua: only search lua subdirs +/// @param opts is_lua: only search lua subdirs /// @return list of absolute paths to the found files ArrayOf(String) nvim__get_runtime(Array pat, Boolean all, Dict(runtime) *opts, Error *err) FUNC_API_SINCE(8) |