aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/private/helpers.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-03-16 14:13:02 +0100
committerJustin M. Keyes <justinkz@gmail.com>2025-03-17 12:06:38 +0100
commit041a939eeb21dd8a62c479f12cc9334d3d30a832 (patch)
treef7334c47cd546feb42b60bc7dc5ccf4e7401e216 /src/nvim/api/private/helpers.c
parentcab3950762f770f295d6a623d20aab9388bfc7ad (diff)
downloadrneovim-041a939eeb21dd8a62c479f12cc9334d3d30a832.tar.gz
rneovim-041a939eeb21dd8a62c479f12cc9334d3d30a832.tar.bz2
rneovim-041a939eeb21dd8a62c479f12cc9334d3d30a832.zip
docs(api): rename "handle" => "id"
Diffstat (limited to 'src/nvim/api/private/helpers.c')
-rw-r--r--src/nvim/api/private/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/private/helpers.c b/src/nvim/api/private/helpers.c
index eca442845d..e303a23ee5 100644
--- a/src/nvim/api/private/helpers.c
+++ b/src/nvim/api/private/helpers.c
@@ -472,7 +472,7 @@ int64_t normalize_index(buf_T *buf, int64_t index, bool end_exclusive, bool *oob
/// Returns a substring of a buffer line
///
-/// @param buf Buffer handle
+/// @param buf Buffer id
/// @param lnum Line number (1-based)
/// @param start_col Starting byte offset into line (0-based)
/// @param end_col Ending byte offset into line (0-based, exclusive)