aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-10-23 03:45:39 +0200
committerGitHub <noreply@github.com>2022-10-23 09:45:39 +0800
commit1887d8d7d0dd619fa90fe11182c436bc3c71c9d5 (patch)
treec86571e042d698d3b82d50022b41edc68df8e6fd /src/nvim/api/vim.c
parentd70193c3260d2baa264b7a287bff352e32b33cc2 (diff)
downloadrneovim-1887d8d7d0dd619fa90fe11182c436bc3c71c9d5.tar.gz
rneovim-1887d8d7d0dd619fa90fe11182c436bc3c71c9d5.tar.bz2
rneovim-1887d8d7d0dd619fa90fe11182c436bc3c71c9d5.zip
docs: fix typos (#20724)
Co-authored-by: Marco Lehmann <m99@posteo.de>
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 32d52bef46..beb48b8d7d 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -1685,7 +1685,7 @@ Array nvim_call_atomic(uint64_t channel_id, Array calls, Arena *arena, Error *er
// error handled after loop
break;
}
- // TODO(bfredl): wastefull copy. It could be avoided to encoding to msgpack
+ // TODO(bfredl): wasteful copy. It could be avoided to encoding to msgpack
// directly here. But `result` might become invalid when next api function
// is called in the loop.
ADD_C(results, copy_object(result, arena));