diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-12-11 02:12:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 02:12:05 +0100 |
commit | 8813b29cec13f7410427fbb8913d3753dd6626a7 (patch) | |
tree | fafa09d2333cfb51ec38e07b5cf11f21163583d3 /src/nvim/api/buffer.c | |
parent | 6f41ce026005dab1129685f31bce9b85e62fd41f (diff) | |
parent | 23fb833ea75107a3349dfb0be2eeccc06111399c (diff) | |
download | rneovim-8813b29cec13f7410427fbb8913d3753dd6626a7.tar.gz rneovim-8813b29cec13f7410427fbb8913d3753dd6626a7.tar.bz2 rneovim-8813b29cec13f7410427fbb8913d3753dd6626a7.zip |
Merge #7555 'vim-patch.sh, doc updates'
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 4b6a88e5fa..fdde28f2bb 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -763,8 +763,8 @@ ArrayOf(Integer, 2) nvim_buf_get_mark(Buffer buffer, String name, Error *err) /// or -1 for ungrouped highlight /// @param hl_group Name of the highlight group to use /// @param line Line to highlight (zero-indexed) -/// @param col_start Start of range of columns to highlight -/// @param col_end End of range of columns to highlight, +/// @param col_start Start of (byte-indexed) column range to highlight +/// @param col_end End of (byte-indexed) column range to highlight, /// or -1 to highlight to end of line /// @param[out] err Error details, if any /// @return The src_id that was used |