diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-01-04 00:38:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 07:38:48 +0800 |
commit | 936e191fef9865600af211c29ea4959ffbce81dd (patch) | |
tree | de6d07e200431bf5638c581b1a5bd856e0675682 /src/nvim/api/extmark.c | |
parent | 5529b07316b75913188c44698aed6c0f866c5da9 (diff) | |
download | rneovim-936e191fef9865600af211c29ea4959ffbce81dd.tar.gz rneovim-936e191fef9865600af211c29ea4959ffbce81dd.tar.bz2 rneovim-936e191fef9865600af211c29ea4959ffbce81dd.zip |
docs: fix typos (#21427)
Co-authored-by: Gustavo Sampaio <gbritosampaio@gmail.com>
Co-authored-by: C.D. MacEachern <craig.daniel.maceachern@gmail.com>
Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
Co-authored-by: Tomas Nemec <nemi@skaut.cz>
Diffstat (limited to 'src/nvim/api/extmark.c')
-rw-r--r-- | src/nvim/api/extmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/extmark.c b/src/nvim/api/extmark.c index 992c134a0f..44e7ed3986 100644 --- a/src/nvim/api/extmark.c +++ b/src/nvim/api/extmark.c @@ -271,7 +271,7 @@ ArrayOf(Integer) nvim_buf_get_extmark_by_id(Buffer buffer, Integer ns_id, /// -- Create new extmark at line 1, column 1. /// local m1 = a.nvim_buf_set_extmark(0, ns, 0, 0, {}) /// -- Create new extmark at line 3, column 1. -/// local m2 = a.nvim_buf_set_extmark(0, ns, 0, 2, {}) +/// local m2 = a.nvim_buf_set_extmark(0, ns, 2, 0, {}) /// -- Get extmarks only from line 3. /// local ms = a.nvim_buf_get_extmarks(0, ns, {2,0}, {2,0}, {}) /// -- Get all marks in this buffer + namespace. |