diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-26 01:01:01 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-09 10:52:12 -0700 |
commit | 456f1d4bddd1e51b9d05cebb6666dfdc7e376635 (patch) | |
tree | 1e967839662ebbb1be1c35efe16bdbefccdba7f0 /src/nvim/api/buffer.c | |
parent | 4b2a2c332c7045b5bec70e9f6f8b353473fe6db9 (diff) | |
download | rneovim-456f1d4bddd1e51b9d05cebb6666dfdc7e376635.tar.gz rneovim-456f1d4bddd1e51b9d05cebb6666dfdc7e376635.tar.bz2 rneovim-456f1d4bddd1e51b9d05cebb6666dfdc7e376635.zip |
doc: |api-fast| [ci skip]
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 690497159a..19ca25837a 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -110,10 +110,10 @@ String buffer_get_line(Buffer buffer, Integer index, Error *err) /// `nvim_buf_lines_event`. Otherwise, the first notification will be /// a `nvim_buf_changedtick_event`. Not used for lua callbacks. /// @param opts Optional parameters. -/// `on_lines`: lua callback received on change. -/// `on_changedtick`: lua callback received on changedtick +/// - `on_lines`: lua callback received on change. +/// - `on_changedtick`: lua callback received on changedtick /// increment without text change. -/// `utf_sizes`: include UTF-32 and UTF-16 size of +/// - `utf_sizes`: include UTF-32 and UTF-16 size of /// the replaced region. /// See |api-buffer-updates-lua| for more information /// @param[out] err Error details, if any |