aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/buffer.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-04-24 02:01:01 +0200
committerGitHub <noreply@github.com>2022-04-23 17:01:01 -0700
commit92f7286377cb077cb42484a83740a8c95f8ae7f1 (patch)
treeba5ef19c90613d403412485f6012ac78399e9cc4 /src/nvim/api/buffer.c
parentcfaf7440fceb5967245966332d38794f5106552d (diff)
downloadrneovim-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/nvim/api/buffer.c')
-rw-r--r--src/nvim/api/buffer.c4
1 files changed, 2 insertions, 2 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,