diff options
author | Aman <29077900+a-vrma@users.noreply.github.com> | 2019-03-20 07:44:06 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-03-20 12:44:06 +0100 |
commit | 8698830cbd73f48125768632ac7f0f0b95c1a58b (patch) | |
tree | b38aa04df25982bb36821171e3153da089eafdf6 /src/nvim/api/vim.c | |
parent | f282324e1ba709986c6ef4a982541c4576873476 (diff) | |
download | rneovim-8698830cbd73f48125768632ac7f0f0b95c1a58b.tar.gz rneovim-8698830cbd73f48125768632ac7f0f0b95c1a58b.tar.bz2 rneovim-8698830cbd73f48125768632ac7f0f0b95c1a58b.zip |
doc #9751
closes #9750
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 ae8404a530..25f7a2a496 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1004,10 +1004,10 @@ Buffer nvim_create_buf(Boolean listed, Boolean scratch, Error *err) /// /// @param buffer handle of buffer to be displayed in the window /// @param enter whether the window should be entered (made the current window) -/// @param config dictionary for the window configuration accepts these keys: +/// @param config Dictionary for the window configuration accepts these keys: /// /// `relative`: If set, the window becomes a floating window. The window -/// will be placed with row,col coordinates relative one of the +/// will be placed with row,col coordinates relative to one of the /// following: /// "editor" the global editor grid /// "win" a window. Use `win` to specify a window id, |