aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-25 01:08:02 -0800
committerGitHub <noreply@github.com>2019-11-25 01:08:02 -0800
commitfd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch)
treee4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /src/nvim/ops.c
parent967f229f32a3093613feaf99969e44333efd8a0a (diff)
downloadrneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.gz
rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.bz2
rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.zip
doc + extmarks tweaks #11421
- nvim_buf_get_extmarks: rename "amount" => "limit" - rename `set_extmark_index_from_obj`
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index f2d35d5e43..294c65ca03 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -5204,8 +5204,7 @@ void write_reg_contents_lst(int name, char_u **strings,
/// write_reg_contents_ex - store `str` in register `name`
///
-/// If `str` ends in '\n' or '\r', use linewise, otherwise use
-/// characterwise.
+/// If `str` ends in '\n' or '\r', use linewise, otherwise use charwise.
///
/// @warning when `name` is '/', `len` and `must_append` are ignored. This
/// means that `str` MUST be NUL-terminated.