diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-26 14:08:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-26 14:08:45 +0200 |
commit | c581517f8a9bf7fe6ede40b2ba009e8884715a93 (patch) | |
tree | aaf0ad5f3e870844c688d7c486f4b86742deeaa0 /src/nvim/api/vim.c | |
parent | 2e5c299f11c8326a8fe0acebb4030f33050ec3ed (diff) | |
parent | add2a6239810a936f682d340525ac98e5e1fb15b (diff) | |
download | rneovim-c581517f8a9bf7fe6ede40b2ba009e8884715a93.tar.gz rneovim-c581517f8a9bf7fe6ede40b2ba009e8884715a93.tar.bz2 rneovim-c581517f8a9bf7fe6ede40b2ba009e8884715a93.zip |
Merge #8908 'build/doc: generate vimindex.html'
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 1ffae8ef43..e78b8c776d 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1083,7 +1083,7 @@ void nvim_set_client_info(uint64_t channel_id, String name, /// - "buffer" buffer with connected |terminal| instance (optional) /// - "client" information about the client on the other end of the /// RPC channel, if it has added it using -/// |nvim_set_client_info|. (optional) +/// |nvim_set_client_info()|. (optional) /// Dictionary nvim_get_chan_info(Integer chan, Error *err) FUNC_API_SINCE(4) @@ -1097,7 +1097,7 @@ Dictionary nvim_get_chan_info(Integer chan, Error *err) /// Get information about all open channels. /// /// @returns Array of Dictionaries, each describing a channel with -/// the format specified at |nvim_get_chan_info|. +/// the format specified at |nvim_get_chan_info()|. Array nvim_list_chans(void) FUNC_API_SINCE(4) { |