diff options
author | Xiretza <xiretza@xiretza.xyz> | 2022-03-18 19:58:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 19:58:00 +0100 |
commit | f2e5f509d995b291e4b9e05a0c059e83490a18e1 (patch) | |
tree | 327672d54f988c69c3ee0d0e727533e79448b327 /src/nvim/api/buffer.c | |
parent | e0fe91f6a3ec88d6f8bee4f7af1af6bf9b397c1f (diff) | |
download | rneovim-f2e5f509d995b291e4b9e05a0c059e83490a18e1.tar.gz rneovim-f2e5f509d995b291e4b9e05a0c059e83490a18e1.tar.bz2 rneovim-f2e5f509d995b291e4b9e05a0c059e83490a18e1.zip |
docs: reword description for nvim_buf_line_count() (#17766)
This adds a few more keywords to make the function easier to find.
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 9f0cadd5ce..18f7177489 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -52,7 +52,7 @@ /// whether a buffer is loaded. -/// Gets the buffer line count +/// Returns the number of lines in the given buffer. /// /// @param buffer Buffer handle, or 0 for current buffer /// @param[out] err Error details, if any |