diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-07-06 22:47:27 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-07-08 15:06:36 +0200 |
commit | d2e44da516816e2616b531886eb9ba7f4c271fb4 (patch) | |
tree | 4b1fb0e796810f67a36488019fc5ea3474ca79d9 /src/nvim/api/vim.c | |
parent | 3a721820c39b7524a2e6d6a73774498104a38962 (diff) | |
download | rneovim-d2e44da516816e2616b531886eb9ba7f4c271fb4.tar.gz rneovim-d2e44da516816e2616b531886eb9ba7f4c271fb4.tar.bz2 rneovim-d2e44da516816e2616b531886eb9ba7f4c271fb4.zip |
docs: gather @notes items into one section
related: 21eacbfef399
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 13021f9c57..c15ec4ce53 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1958,7 +1958,7 @@ Object nvim__unpack(String str, Error *err) /// Deletes an uppercase/file named mark. See |mark-motions|. /// -/// @note fails with error if a lowercase or buffer local named mark is used. +/// @note Lowercase name (or other buffer-local mark) is an error. /// @param name Mark name /// @return true if the mark was deleted, else false. /// @see |nvim_buf_del_mark()| |