diff options
author | Brian Wignall <brianwignall@gmail.com> | 2019-11-26 07:15:14 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-27 22:47:25 -0800 |
commit | 001e69cd4602e84219fd7cfd8ade62f0cb24097c (patch) | |
tree | df635c6a687421d2126b004daec74f1fd2c1f55b /src/nvim/mark_extended.c | |
parent | 86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538 (diff) | |
download | rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.gz rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.bz2 rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.zip |
doc: fix typos
close #11459
Diffstat (limited to 'src/nvim/mark_extended.c')
-rw-r--r-- | src/nvim/mark_extended.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/mark_extended.c b/src/nvim/mark_extended.c index 91c2f919ce..17776d438a 100644 --- a/src/nvim/mark_extended.c +++ b/src/nvim/mark_extended.c @@ -4,7 +4,7 @@ // Implements extended marks for plugins. Each mark exists in a btree of // lines containing btrees of columns. // -// The btree provides efficent range lookups. +// The btree provides efficient range lookups. // A map of pointers to the marks is used for fast lookup by mark id. // // Marks are moved by calls to: extmark_col_adjust, extmark_adjust, or @@ -300,7 +300,7 @@ Extmark *extmark_from_pos(buf_T *buf, uint64_t ns, linenr_T lnum, colnr_T col) return NULL; } -// Returns an avaliable id in a namespace +// Returns an available id in a namespace uint64_t extmark_free_id_get(buf_T *buf, uint64_t ns) { if (!buf->b_extmark_ns) { |